aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-01-04 11:55:05 +0000
committerGuy Harris <guy@alum.mit.edu>2007-01-04 11:55:05 +0000
commitfb85064c5efefd757d08dac0754bc70ae7c30f9b (patch)
treeaeb6be3418453d985f5e039cdc4efa7b42a2b8af /configure.in
parent461d5cc45f02f9b16a9cb58d858131431f1d9dcf (diff)
-Wl,-single_module breaks the configure script.
svn path=/trunk/; revision=20302
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.in b/configure.in
index 61518c4cd0..e13c94d6c9 100644
--- a/configure.in
+++ b/configure.in
@@ -236,11 +236,6 @@ AC_MSG_CHECKING(for platform-specific linker flags)
case "$host_os" in
darwin*)
#
- # Add -Wl,-single_module; see the checkin comment for details
- # of why we do that (it's considered preferable, at least in
- # OS X 10.4 and later, by Apple, and it's needed for some
- # packaged build work).
- #
# Add -Wl,-search_paths_first to make sure that if we search
# directories A and B, in that order, for a given library, a
# non-shared version in directory A, rather than a shared
@@ -249,7 +244,7 @@ darwin*)
# with a static version installed in /usr/local/lib rather than
# the system version in /usr/lib).
#
- LDFLAGS="-Wl,-single_module -Wl,-search_paths_first $LDFLAGS"
+ LDFLAGS="-Wl,-search_paths_first $LDFLAGS"
AC_MSG_RESULT(Apple linker - added -Wl,-search_paths_first)
;;
cygwin*)