aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-01-12 21:04:33 +0000
committerGuy Harris <guy@alum.mit.edu>2007-01-12 21:04:33 +0000
commitbbdb2dd7336d48d55f3b8ce062312163dce071ce (patch)
tree411edfc6cf60da3b52768b12125f2df676f0cfe3 /configure.in
parent69238439c43f07d2d48fc9d22f24e34d7c0891de (diff)
Automake variables ending with _LDFLAGS are special:
http://sources.redhat.com/ml/automake/2001-08/msg00046.html so call it LDFLAGS_SHAREDLIB rather than SHAREDLIB_LDFLAGS. svn path=/trunk/; revision=20410
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index cdcc48d1fc..8991c7e321 100644
--- a/configure.in
+++ b/configure.in
@@ -241,7 +241,7 @@ darwin*)
# some Apple documentation recommends it for most shared
# libraries.
#
- SHAREDLIB_LDFLAGS="-Wl,-single_module"
+ LDFLAGS_SHAREDLIB="-Wl,-single_module"
#
# Add -Wl,-search_paths_first to make sure that if we search
# directories A and B, in that order, for a given library, a
@@ -266,7 +266,7 @@ cygwin*)
AC_MSG_RESULT(none needed)
;;
esac
-AC_SUBST(SHAREDLIB_LDFLAGS)
+AC_SUBST(LDFLAGS_SHAREDLIB)
#
# On OS X, if we find the headers for Core Foundation and Launch Services,