]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* configure.in: Disable building profile libraries by default. cvs/fedora-glibc-20061025T1857
authorUlrich Drepper <drepper@redhat.com>
Wed, 18 Oct 2006 21:21:02 +0000 (21:21 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 18 Oct 2006 21:21:02 +0000 (21:21 +0000)
ChangeLog
configure
configure.in

index c36631cd1e5ca9c82ec6c438cca8feb494b686ac..811dfa7d4ff09694b9af6a65793fb3d2ea646367 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-10-18  Ulrich Drepper  <drepper@redhat.com>
+
+       * configure.in: Disable building profile libraries by default.
+
 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
 
        * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
index d14f89a8a98c68e7ca26a31f719a9ee9857dc29d..8bd2144a8bf60b2e7f2f66d893ed907a0f480982 100755 (executable)
--- a/configure
+++ b/configure
@@ -864,7 +864,7 @@ Optional Features:
                           [default=no]
   --enable-shared         build shared library [default=yes if GNU ld &
                           ELF]
-  --enable-profile        build profiled library [default=yes]
+  --enable-profile        build profiled library [default=no]
   --enable-omitfp         build undebuggable optimized library
                           [default=no]
   --enable-bounded        build with runtime bounds checking
@@ -1543,7 +1543,7 @@ if test "${enable_profile+set}" = set; then
   enableval="$enable_profile"
   profile=$enableval
 else
-  profile=yes
+  profile=no
 fi;
 # Check whether --enable-omitfp or --disable-omitfp was given.
 if test "${enable_omitfp+set}" = set; then
index 924b0406cb440659d9876e179acf94f736401317..6a7e51d853ae81c76c1375f26ccca8b55e2237e5 100644 (file)
@@ -131,9 +131,9 @@ AC_ARG_ENABLE([shared],
              [shared=default])
 AC_ARG_ENABLE([profile],
               AC_HELP_STRING([--enable-profile],
-                             [build profiled library @<:@default=yes@:>@]),
+                             [build profiled library @<:@default=no@:>@]),
              [profile=$enableval],
-             [profile=yes])
+             [profile=no])
 AC_ARG_ENABLE([omitfp],
               AC_HELP_STRING([--enable-omitfp],
                              [build undebuggable optimized library @<:@default=no@:>@]),