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
146bbc82
Commit
146bbc82
authored
Sep 18, 2013
by
Felix Paul Kühne
Committed by
Jean-Baptiste Kempf
Sep 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fix linking of cdda, vcd, and vcdx access modules
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
6eeb082c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
configure.ac
configure.ac
+1
-7
modules/access/Makefile.am
modules/access/Makefile.am
+7
-2
No files found.
configure.ac
View file @
146bbc82
...
...
@@ -1851,17 +1851,11 @@ then
AC_MSG_RESULT(no)
])
if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2"
if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2"
-o "${SYS}" = "darwin"
then
VLC_ADD_PLUGIN([vcd cdda])
fi
if test "${SYS}" = "darwin"
then
VLC_ADD_PLUGIN([vcd cdda])
VLC_ADD_LIBS([vcd vcdx cdda],[-Wl,-framework,IOKit,-framework,CoreFoundation])
fi
if test "$enable_libcddb" != "no"; then
PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
HAVE_LIBCDDB=yes
...
...
modules/access/Makefile.am
View file @
146bbc82
...
...
@@ -212,18 +212,20 @@ EXTRA_LTLIBRARIES += libvnc_plugin.la
libcdda_plugin_la_SOURCES
=
access/cdda.c access/vcd/cdrom.c access/vcd/cdrom.h access/vcd/cdrom_internals.h
libcdda_plugin_la_CFLAGS
=
$(AM_CFLAGS)
$(LIBCDDB_CFLAGS)
libcdda_plugin_la_LIBADD
=
$(LIBCDDB_LIBS)
libcdda_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(accessdir)
'
if
HAVE_DARWIN
libcdda_plugin_la_LIBADD
+=
-liconv
libcdda_plugin_la_LDFLAGS
+=
-Wl
,-framework,IOKit,-framework,CoreFoundation
endif
libcdda_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(accessdir)
'
EXTRA_LTLIBRARIES
+=
libcdda_plugin.la
access_LTLIBRARIES
+=
$(LTLIBcdda)
libvcd_plugin_la_SOURCES
=
access/vcd/vcd.c access/vcd/cdrom.c access/vcd/cdrom.h access/vcd/cdrom_internals.h
libvcd_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(accessdir)
'
if
HAVE_DARWIN
libvcd_plugin_la_LIBADD
=
-liconv
libvcd_plugin_la_LDFLAGS
+=
-Wl
,-framework,IOKit,-framework,CoreFoundation
endif
libvcd_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(accessdir)
'
EXTRA_LTLIBRARIES
+=
libvcd_plugin.la
access_LTLIBRARIES
+=
$(LTLIBvcd)
...
...
@@ -237,6 +239,9 @@ if HAVE_WIN32
libvcdx_plugin_la_LIBADD
=
-lwinmm
endif
libvcdx_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(accessdir)
'
if
HAVE_DARWIN
libvcdx_plugin_la_LDFLAGS
+=
-Wl
,-framework,IOKit,-framework,CoreFoundation
endif
EXTRA_LTLIBRARIES
+=
libvcdx_plugin.la
access_LTLIBRARIES
+=
$(LTLIBvcdx)
...
...
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