Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
dc3c1978
Commit
dc3c1978
authored
Oct 31, 2010
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartztext: Allow to bypass quartztext build on Darwin.
parent
292ecf24
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
configure.ac
configure.ac
+12
-0
modules/misc/Modules.am
modules/misc/Modules.am
+0
-3
No files found.
configure.ac
View file @
dc3c1978
...
@@ -3371,6 +3371,18 @@ then
...
@@ -3371,6 +3371,18 @@ then
VLC_ADD_LDFLAGS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
VLC_ADD_LDFLAGS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
fi
fi
dnl
dnl QuartzText vout module (iOS/Mac OS)
dnl
AC_ARG_ENABLE(macosx-quartztext,
[ --enable-macosx-quartztext Mac OS X quartz text module (default enabled on Mac OS X)])
if test "x${enable_macosx_quartztext}" != "xno" &&
(test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
then
VLC_ADD_PLUGIN([quartztext])
VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,ApplicationServices])
fi
dnl
dnl
dnl Windows DirectX module
dnl Windows DirectX module
dnl
dnl
...
...
modules/misc/Modules.am
View file @
dc3c1978
...
@@ -30,9 +30,6 @@ libvlc_LTLIBRARIES += \
...
@@ -30,9 +30,6 @@ libvlc_LTLIBRARIES += \
if HAVE_WINCE
if HAVE_WINCE
libvlc_LTLIBRARIES += libwin32text_plugin.la
libvlc_LTLIBRARIES += libwin32text_plugin.la
endif
endif
if HAVE_DARWIN
libvlc_LTLIBRARIES += libquartztext_plugin.la
endif
if ENABLE_SOUT
if ENABLE_SOUT
libvlc_LTLIBRARIES += \
libvlc_LTLIBRARIES += \
libvod_rtsp_plugin.la \
libvod_rtsp_plugin.la \
...
...
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