diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-10-25 04:32:40 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-10-25 04:32:40 +0000 |
commit | 104bd05c0c22b17494ecac05d035ecd059e906f5 (patch) | |
tree | 7168179a21d78cd5005dd23063f3716dfca364d5 /configure | |
parent | 600a8f21553d8c384e9e1da28c8975fe5eba3cd8 (diff) |
switch -export_dynamic to the actual current flag --export-dynamic
svn path=/trunk/externals/OSCx/; revision=12671
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4411,19 +4411,19 @@ else case $host in *86*-linux*) CFLAGS="$CFLAGS -DUNIX -Wall -Wimplicit -Wunused -Wmissing-prototypes -O2 -fPIC" - LDFLAGS="-Wl,-export_dynamic -shared" + LDFLAGS="-Wl,--export-dynamic -shared" pd_suffix=pd_linux LIBS="-lc -lm" ;; powerpc-*-linux*) CFLAGS="$CFLAGS -DUNIX -Wall -Wimplicit -Wunused -Wmissing-prototypes -O1" - LDFLAGS="-Wl,-export_dynamic -shared" + LDFLAGS="-Wl,--export-dynamic -shared" pd_suffix=pd_linux LIBS="-lc -lm" ;; *-*-linux*) CFLAGS="$CFLAGS -DUNIX -Wall -Wimplicit -Wunused -Wmissing-prototypes -O1" - LDFLAGS="-Wl,-export_dynamic -shared" + LDFLAGS="-Wl,--export-dynamic -shared" INCLUDES="$INCLUDES" pd_suffix=pd_linux LIBS="-L../../../pd/bin -lpd -lc -lm" @@ -4433,7 +4433,7 @@ else ;; *-*-cygwin*) CFLAGS="$CFLAGS -mno-cygwin -Wall -Wimplicit -Wunused -Wmissing-prototypes -O3 " - LDFLAGS="-Wl,-export_dynamic -shared" + LDFLAGS="-Wl,--export-dynamic -shared" INCLUDES="$INCLUDES -I../../../pd/src" pd_suffix=dll LIBS="-lc -lm" @@ -4453,7 +4453,7 @@ else ;; *) CFLAGS="$CFLAGS -DUNIX -Wall -Wimplicit -Wunused -Wmissing-prototypes -O1" - LDFLAGS="-Wl,-export_dynamic -shared" + LDFLAGS="-Wl,--export-dynamic -shared" pd_suffix=pd_linux LIBS="-lc -lm" ;; |