aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-09-15 18:53:43 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-09-15 18:53:43 +0000
commitee70805b65642b9a294b7ea295f570c7949eab3b (patch)
treeb53d247142e3e321d851cc7e32346501231a55d5
parenta6ae5c704a97d79619cb8c22cc6b6f5bc7a5006f (diff)
fixed linker flag, it was using a very old version that now means something else (-export_dynamic versus --export-dynamic)
svn path=/trunk/externals/gem2pdp/; revision=12355
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2358a67..3896734 100644
--- a/configure.ac
+++ b/configure.ac
@@ -95,7 +95,7 @@ AC_CANONICAL_HOST
case "$host" in
*-linux*)
EXTENSION=pd_linux
- LDFLAGS="$LDFLAGS -export_dynamic -shared"
+ LDFLAGS="$LDFLAGS -Wl,--export-dynamic -shared"
;;
*-mingw*)
CFLAGS="$CFLAGS -mms-bitfields"