about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-10-18 21:21:02 +0000
committerUlrich Drepper <drepper@redhat.com>2006-10-18 21:21:02 +0000
commitade0c15da8a81b8909b0f6e6661e95e92dbb9668 (patch)
tree20b62624d66b49986cc23e020b4dab8e7fe6c30e
parent609cf61467154868c88b1ede078322fb4b48a528 (diff)
downloadglibc-cvs/fedora-glibc-20061025T1857.tar.gz
glibc-cvs/fedora-glibc-20061025T1857.tar.xz
glibc-cvs/fedora-glibc-20061025T1857.zip
* configure.in: Disable building profile libraries by default. cvs/fedora-glibc-20061025T1857
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure4
-rw-r--r--configure.in4
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c36631cd1e..811dfa7d4f 100644
--- 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
diff --git a/configure b/configure
index d14f89a8a9..8bd2144a8b 100755
--- 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
diff --git a/configure.in b/configure.in
index 924b0406cb..6a7e51d853 100644
--- a/configure.in
+++ b/configure.in
@@ -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@:>@]),