aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-04-01 15:06:25 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-04-01 15:06:25 +0000
commit3eb854719b43e617367ca38457c2e5a2f64271e0 (patch)
tree9db83ca5e4e7d5a8f8b5dfef8e06bea03e0794c7 /src
parent6ca3e8bae049dd2abb653eaedc311206e2918c57 (diff)
removed the entire "-export_dynamic" thing; why did this ever work?
svn path=/trunk/externals/zexy/; revision=10942
Diffstat (limited to 'src')
-rw-r--r--src/configure.ac10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/configure.ac b/src/configure.ac
index eef1db3..d335b9d 100644
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -37,7 +37,6 @@ AC_ARG_WITH(version, [ --with-version=<ver> enforce a certain zexy-version
AC_ARG_WITH(extension,[ --with-extension=<ext> enforce a certain extension for the dynamic library (e.g. dll)])
AC_ARG_WITH(pdpath, [ --with-pd=</path/to/pd> where to look for pd-headers and and -libs])
AC_ARG_ENABLE(PIC, [ --disable-PIC disable compilation with PIC-flag])
-AC_ARG_ENABLE(PIC, [ --disable-exportdynamic disable linkage with the export_dynamic-flag])
AC_ARG_ENABLE(icc, [ --enable-icc enable ICC-support])
AC_ARG_ENABLE(lpt, [ --enable-lpt enable parallelport-support])
AC_ARG_ENABLE(library,[ --disable-library split the library into single externals])
@@ -64,9 +63,6 @@ then
LD=${CC}
# LDFLAGS="-shared pd.dll"
EXT=dll
- if test "x" = "x${enable_exportdynamic}" ; then
- enable_exportdynamic="no"
- fi
fi
@@ -287,12 +283,6 @@ dnl
dnl OK, checks which machines are here now
dnl this needs some rethinking when cross-compiling (?)
dnl
-dnl AC_CHECK_LDFLAGS([-export_dynamic -shared])
-
-if test "x$enable_exportdynamic" != "xno"; then
- AC_CHECK_LDFLAGS([-export_dynamic])
-fi
-
AC_CHECK_LDFLAGS([-shared])
if test `uname -s` = Linux;