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
5282cbf1
Commit
5282cbf1
authored
Sep 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define explicit makefile variable for libpthread
parent
fcc20e92
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
9 deletions
+12
-9
bin/Makefile.am
bin/Makefile.am
+1
-1
configure.ac
configure.ac
+7
-4
lib/Makefile.am
lib/Makefile.am
+2
-2
modules/common.am
modules/common.am
+1
-1
src/Makefile.am
src/Makefile.am
+1
-1
No files found.
bin/Makefile.am
View file @
5282cbf1
...
...
@@ -30,7 +30,7 @@ vlc_wrapper_SOURCES = rootwrap.c
vlc_wrapper_LDADD
=
$(SOCKET_LIBS)
vlc_LDFLAGS
=
$(LDFLAGS_vlc)
vlc_LDADD
=
../lib/libvlc.la
$(LIB
S_vlc
)
vlc_LDADD
=
../lib/libvlc.la
$(LIB
PTHREAD
)
vlc_static_SOURCES
=
$(vlc_SOURCES)
vlc_static_CFLAGS
=
$(AM_CFLAGS)
\
...
...
configure.ac
View file @
5282cbf1
...
...
@@ -658,12 +658,14 @@ AC_SUBST(LIBDL)
VLC_ADD_LIBS([lua],[$LIBDL])
dnl Check for thread library
if test "${SYS}" != "mingw32"; then
LIBPTHREAD=""
AS_IF([test "${SYS}" != "mingw32"], [
VLC_SAVE_FLAGS
LIBS=""
AC_SEARCH_LIBS(pthread_rwlock_init, pthread pthreads c_r, [
VLC_ADD_LIBS([libvlccore libvlc vlc plugin],[${LIBS}])
AS_IF([test "$ac_cv_search_pthread_rwlock_init" != "none required"], [
LIBPTHREAD="$ac_cv_search_pthread_rwlock_init"
])
])
VLC_RESTORE_FLAGS
...
...
@@ -682,7 +684,8 @@ if test "${SYS}" != "mingw32"; then
dnl HP/UX port
AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
])
fi # end "${SYS}" != "mingw32"
])
AC_SUBST(LIBPTHREAD)
dnl Check for headers
AC_CHECK_HEADERS([search.h])
...
...
lib/Makefile.am
View file @
5282cbf1
...
...
@@ -55,8 +55,8 @@ libvlc_la_SOURCES = \
../src/revision.c
EXTRA_DIST
=
libvlc.pc.in libvlc.sym ../include/vlc/libvlc_version.h.in
libvlc_la_LIBADD
=
$(LIBS_libvlc)
\
../src/libvlccore.la ../compat/libcompat.la
$(LIBM)
libvlc_la_LIBADD
=
\
../src/libvlccore.la ../compat/libcompat.la
$(LIB
PTHREAD)
$(LIB
M)
libvlc_la_LDFLAGS
=
\
$(LDFLAGS_libvlc)
\
-no-undefined
\
...
...
modules/common.am
View file @
5282cbf1
...
...
@@ -31,7 +31,7 @@ AM_LDFLAGS = -rpath '$(libvlcdir)' \
-export-symbols-regex ^vlc_entry \
-shrext $(LIBEXT) \
-no-undefined
AM_LIBADD = $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la $(LIB
S_plugin
)
AM_LIBADD = $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la $(LIB
PTHREAD
)
include $(srcdir)/Modules.am
...
...
src/Makefile.am
View file @
5282cbf1
...
...
@@ -189,7 +189,7 @@ libvlccore_la_LDFLAGS = \
libvlccore_la_LIBADD
=
$(LIBS_libvlccore)
\
../compat/libcompat.la
\
$(LTLIBINTL)
$(LTLIBICONV)
\
$(IDN_LIBS)
$(SOCKET_LIBS)
$(LIBDL)
$(LIBM)
$(IDN_LIBS)
$(
LIBPTHREAD)
$(
SOCKET_LIBS)
$(LIBDL)
$(LIBM)
libvlccore_la_DEPENDENCIES
=
libvlccore.sym
if
HAVE_WIN32
libvlccore_la_DEPENDENCIES
+=
libvlc_win32_rc.
$(OBJEXT)
...
...
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