aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure11
-rw-r--r--configure.ac11
3 files changed, 5 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog
index 46a9e337..52d677a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-06-04 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Remove use of -export-dynamic for GCC.
+ * configure: Regenerated.
+
2012-05-30 Arnold D. Robbins <arnold@skeeve.com>
* main.c (is_off_limits_var): Minor coding style edit.
diff --git a/configure b/configure
index 42ed1ca0..44116db8 100755
--- a/configure
+++ b/configure
@@ -10018,17 +10018,6 @@ if test "x$ac_cv_header_dlfcn_h" = xyes; then :
$as_echo "#define DYNAMIC 1" >>confdefs.h
- if test "$GCC" = yes
- then
- # Add others here as appropriate,
- # one day use GNU libtool.
- # 3/2010: Used to have cygwin here but removed since
- # we get complaints that -export-dynamic doesn't work.
- if uname | $EGREP -i 'linux|freebsd' > /dev/null
- then
- LDFLAGS="$LDFLAGS -export-dynamic"
- fi
- fi
# Check this separately. Some systems have dlopen
# in libc. Notably freebsd and cygwin.
diff --git a/configure.ac b/configure.ac
index 334e5ac1..55bf0bab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -285,17 +285,6 @@ dnl check for dynamic linking
dnl This is known to be very primitive
AC_CHECK_HEADER(dlfcn.h,
[AC_DEFINE([DYNAMIC], 1, [dynamic loading is possible])
- if test "$GCC" = yes
- then
- # Add others here as appropriate,
- # one day use GNU libtool.
- # 3/2010: Used to have cygwin here but removed since
- # we get complaints that -export-dynamic doesn't work.
- if uname | $EGREP -i 'linux|freebsd' > /dev/null
- then
- LDFLAGS="$LDFLAGS -export-dynamic"
- fi
- fi
# Check this separately. Some systems have dlopen
# in libc. Notably freebsd and cygwin.