diff options
author | phintuka <phintuka> | 2010-10-19 11:53:31 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-10-19 11:53:31 +0000 |
commit | eae17246ac8b7b801640f54e1c6141d7a5a1b26c (patch) | |
tree | 90858a9ad9a21867c2cf357e24a11fc24ffcbedd | |
parent | 024b0fb4e9cd07ecfd5d4b50563a2be11c044430 (diff) | |
download | xineliboutput-eae17246ac8b7b801640f54e1c6141d7a5a1b26c.tar.gz xineliboutput-eae17246ac8b7b801640f54e1c6141d7a5a1b26c.tar.bz2 |
Unconditionally add -shared linker flag
(Thanks to Christian Ruppert)
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 ### |