diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-04-18 15:22:34 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-04-18 15:22:34 +0300 |
commit | 6afaf0a27a5b9429c74fcbfb505a6d047a0c5d94 (patch) | |
tree | 404ab050b2dee9587857ab5df37161ee622ea113 | |
parent | a0bc08515ee5a7b9cebc377d42d775b86aa48c77 (diff) | |
parent | 787a601c5eefb6dc49042e2ead2c5bd819f7ff8b (diff) | |
download | egawk-6afaf0a27a5b9429c74fcbfb505a6d047a0c5d94.tar.gz egawk-6afaf0a27a5b9429c74fcbfb505a6d047a0c5d94.tar.bz2 egawk-6afaf0a27a5b9429c74fcbfb505a6d047a0c5d94.zip |
Merge branch 'gawk-4.1-stable'
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-04-18 Arnold D. Robbins <arnold@skeeve.com> + + * configure.ac: Change adding of -export-dynamic for GCC to be + -Wl,-export-dynamic, which then works for PCC also. + 2014-04-11 Arnold D. Robbins <arnold@skeeve.com> * io.c (closemabyesocket): Define if not defined, e.g. building @@ -10151,7 +10151,7 @@ $as_echo "#define DYNAMIC 1" >>confdefs.h if test "$GCC" = yes; then case $host_os in linux*|freebsd*) - LDFLAGS="$LDFLAGS -export-dynamic" + LDFLAGS="$LDFLAGS -Wl,-export-dynamic" ;; esac fi diff --git a/configure.ac b/configure.ac index 9c39db76..e7e2d5f6 100644 --- a/configure.ac +++ b/configure.ac @@ -313,7 +313,7 @@ EOF if test "$GCC" = yes; then case $host_os in linux*|freebsd*) - LDFLAGS="$LDFLAGS -export-dynamic" + LDFLAGS="$LDFLAGS -Wl,-export-dynamic" ;; esac fi |