aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2011-06-11 04:16:49 -0700
committerRoland McGrath <roland@hack.frob.com>2011-07-02 15:19:52 -0700
commitf781ef4015504e8a1da649c266584976238aa079 (patch)
treece0e43d899039e60690ce5ca64341ad9c7eedf38 /configure.in
parent2d4fa81e11abc464b5b1f6417525285e84ff787c (diff)
downloadglibc-f781ef4015504e8a1da649c266584976238aa079.zip
glibc-f781ef4015504e8a1da649c266584976238aa079.tar.gz
glibc-f781ef4015504e8a1da649c266584976238aa079.tar.bz2
Add --with-default-link configure option.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index f2b3921..f34aab3 100644
--- a/configure.in
+++ b/configure.in
@@ -114,6 +114,14 @@ AC_ARG_WITH([headers],
[sysheaders=$withval],
[sysheaders=''])
+AC_SUBST(use_default_link)
+AC_ARG_WITH([default-link],
+ AC_HELP_STRING([--with-default-link],
+ [do not use explicit linker scripts
+ @<:@default=no@:>@]),
+ [use_default_link=$withval],
+ [use_default_link=no])
+
AC_ARG_ENABLE([sanity-checks],
AC_HELP_STRING([--disable-sanity-checks],
[really do not use threads (should not be used except in special situations) @<:@default=yes@:>@]),