Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
142e288b
Commit
142e288b
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 the motion and rotate modules
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
146bbc82
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
configure.ac
configure.ac
+0
-1
modules/control/Modules.am
modules/control/Modules.am
+3
-0
modules/video_filter/Modules.am
modules/video_filter/Modules.am
+3
-0
No files found.
configure.ac
View file @
142e288b
...
@@ -153,7 +153,6 @@ case "${host_os}" in
...
@@ -153,7 +153,6 @@ case "${host_os}" in
CPPFLAGS="${CPPFLAGS} ${ARCH_flag}"
CPPFLAGS="${CPPFLAGS} ${ARCH_flag}"
OBJCFLAGS="${OBJCFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu99 ${ARCH_flag}"
OBJCFLAGS="${OBJCFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu99 ${ARCH_flag}"
LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names ${ARCH_flag}"
LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names ${ARCH_flag}"
VLC_ADD_LIBS([motion rotate], [-Wl,-framework,IOKit,-framework,CoreFoundation])
VLC_ADD_LIBS([libvlc vlc],[-Wl,-undefined,dynamic_lookup,-framework,AppKit])
VLC_ADD_LIBS([libvlc vlc],[-Wl,-undefined,dynamic_lookup,-framework,AppKit])
VLC_ADD_LIBS([avcodec access_avio swscale postproc i420_rgb_mmx x262 x264 x26410b],[-Wl,-read_only_relocs,suppress])
VLC_ADD_LIBS([avcodec access_avio swscale postproc i420_rgb_mmx x262 x264 x26410b],[-Wl,-read_only_relocs,suppress])
VLC_ADD_LIBS([libvlccore],[-Wl,-framework,CoreFoundation,-framework,SystemConfiguration])
VLC_ADD_LIBS([libvlccore],[-Wl,-framework,CoreFoundation,-framework,SystemConfiguration])
...
...
modules/control/Modules.am
View file @
142e288b
...
@@ -16,6 +16,9 @@ noinst_LTLIBRARIES = libvlc_motion.la
...
@@ -16,6 +16,9 @@ noinst_LTLIBRARIES = libvlc_motion.la
libmotion_plugin_la_SOURCES = motion.c
libmotion_plugin_la_SOURCES = motion.c
libmotion_plugin_la_LIBADD = libvlc_motion.la
libmotion_plugin_la_LIBADD = libvlc_motion.la
if HAVE_DARWIN
libmotion_plugin_la_LDFLAGS = -Wl,-framework,IOKit,-framework,CoreFoundation
endif
control_LTLIBRARIES += \
control_LTLIBRARIES += \
libdummy_plugin.la \
libdummy_plugin.la \
...
...
modules/video_filter/Modules.am
View file @
142e288b
...
@@ -68,6 +68,9 @@ SOURCES_opencv_example = opencv_example.cpp filter_event_info.h
...
@@ -68,6 +68,9 @@ SOURCES_opencv_example = opencv_example.cpp filter_event_info.h
librotate_plugin_la_SOURCES = rotate.c
librotate_plugin_la_SOURCES = rotate.c
librotate_plugin_la_LIBADD = ../control/libvlc_motion.la $(LIBM)
librotate_plugin_la_LIBADD = ../control/libvlc_motion.la $(LIBM)
if HAVE_DARWIN
librotate_plugin_la_LDFLAGS = -Wl,-framework,IOKit,-framework,CoreFoundation
endif
video_filter_LTLIBRARIES += librotate_plugin.la
video_filter_LTLIBRARIES += librotate_plugin.la
SOURCES_colorthres = colorthres.c
SOURCES_colorthres = colorthres.c
...
...
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