summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-10-19 11:53:31 +0000
committerphintuka <phintuka>2010-10-19 11:53:31 +0000
commiteae17246ac8b7b801640f54e1c6141d7a5a1b26c (patch)
tree90858a9ad9a21867c2cf357e24a11fc24ffcbedd
parent024b0fb4e9cd07ecfd5d4b50563a2be11c044430 (diff)
downloadxineliboutput-eae17246ac8b7b801640f54e1c6141d7a5a1b26c.tar.gz
xineliboutput-eae17246ac8b7b801640f54e1c6141d7a5a1b26c.tar.bz2
Unconditionally add -shared linker flag
(Thanks to Christian Ruppert)
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ba50ba29..14ca5d91 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
# See the main source file 'xineliboutput.c' for copyright information and
# how to reach the author.
#
-# $Id: Makefile,v 1.93 2010-10-19 11:51:00 phintuka Exp $
+# $Id: Makefile,v 1.94 2010-10-19 11:53:31 phintuka Exp $
#
# The official name of this plugin.
@@ -53,7 +53,8 @@ ifeq ($(ARCH_APPLE_DARWIN), yes)
else
CXXFLAGS ?= -O3 -pipe -Wall -Woverloaded-virtual -fPIC -g
CFLAGS ?= -O3 -pipe -Wall -fPIC -g
- LDFLAGS_SO ?= -shared -fvisibility=hidden
+ LDFLAGS_SO ?= -fvisibility=hidden
+ LDFLAGS_SO += -shared
endif
###