summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-12-02 01:40:58 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-12-02 01:40:58 +0000
commit6081bc9a06ee97333769f77a9e5c18a15afb29da (patch)
tree3ed913da28bd41b5176dec49c381621d67fb75c7
parent0ea721f7ce81357bc4ec6eea609cd50482c3d15b (diff)
downloadxine-lib-6081bc9a06ee97333769f77a9e5c18a15afb29da.tar.gz
xine-lib-6081bc9a06ee97333769f77a9e5c18a15afb29da.tar.bz2
Pass the visibility flag in the CFLAGS too, so that the symbols are not exported.
CVS patchset: 8398 CVS date: 2006/12/02 01:40:58
-rw-r--r--contrib/ffmpeg/makefile.xine.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/ffmpeg/makefile.xine.in b/contrib/ffmpeg/makefile.xine.in
index 3515c2aaa..58b4a09a6 100644
--- a/contrib/ffmpeg/makefile.xine.in
+++ b/contrib/ffmpeg/makefile.xine.in
@@ -2,6 +2,7 @@ srcdir = @srcdir@
CC = @CC@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
+VISIBILITY_FLAG = @VISIBILITY_FLAG@
config.mak: $(srcdir)/configure makefile.xine
$(srcdir)/configure \
@@ -12,7 +13,7 @@ config.mak: $(srcdir)/configure makefile.xine
--disable-strip \
--make="$(MAKE)" \
--cc="$(CC)" \
- --extra-cflags="$(CFLAGS) -fPIC -DPIC" \
+ --extra-cflags="$(CFLAGS) $(VISIBILITY_FLAG) -fPIC -DPIC" \
--extra-ldflags="$(LDFLAGS)" \
--enable-gpl \
--enable-pthreads \