Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
0adb8c2a
Commit
0adb8c2a
authored
Mar 28, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
screen: disable compilation for non-Mac Darwin flavors
parent
7bd008c0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
configure.ac
configure.ac
+3
-4
extras/package/ios/build.sh
extras/package/ios/build.sh
+1
-1
modules/access/Modules.am
modules/access/Modules.am
+1
-1
No files found.
configure.ac
View file @
0adb8c2a
...
...
@@ -1892,13 +1892,12 @@ AC_ARG_ENABLE(screen,
[disable screen capture (default enabled)])])
if test "${enable_screen}" != "no"; then
if test "${SYS}" = "darwin"; then
AC_CHECK_HEADERS(OpenGL/gl.h, [
AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
VLC_ADD_PLUGIN([screen])
])
AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
VLC_ADD_PLUGIN([screen])
])
fi
fi
AM_CONDITIONAL(HAVE_MAC_SCREEN, [test "${SYS}" = "darwin" -a "x${enable_screen}" != "xno"])
dnl
dnl VNC/RFB access module
...
...
extras/package/ios/build.sh
View file @
0adb8c2a
...
...
@@ -199,7 +199,6 @@ fi
--disable-caca
\
--disable-gettext
\
--disable-mpcdec
\
--disable-screen
\
--disable-upnp
\
--disable-gme
\
--disable-tremor
\
...
...
@@ -311,6 +310,7 @@ ${VLCROOT}/configure \
--enable-speex
\
--enable-theora
\
--enable-flac
\
--disable-screen
\
--disable-freetype
\
--disable-taglib
\
--disable-mmx
>
${
out
}
# MMX and SSE support requires llvm which is broken on Simulator
...
...
modules/access/Modules.am
View file @
0adb8c2a
...
...
@@ -183,7 +183,7 @@ libscreen_plugin_la_SOURCES += screen/win32.c
libscreen_plugin_la_LIBADD += -lgdi32
libvlc_LTLIBRARIES += libscreen_plugin.la
endif
if HAVE_
DARWI
N
if HAVE_
MAC_SCREE
N
libscreen_plugin_la_SOURCES += screen/mac.c
libscreen_plugin_la_LDFLAGS = $(AM_LDFLAGS)
libscreen_plugin_la_LDFLAGS += "-Wl,-framework,OpenGL,-framework,ApplicationServices"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment