* configure.in: Disable building profile libraries by default.

This commit is contained in:
Ulrich Drepper 2006-10-18 21:21:02 +00:00
parent 609cf61467
commit ade0c15da8
3 changed files with 8 additions and 4 deletions

View File

@ -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> 2006-10-17 Jakub Jelinek <jakub@redhat.com>
* sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses

4
configure vendored
View File

@ -864,7 +864,7 @@ Optional Features:
[default=no] [default=no]
--enable-shared build shared library [default=yes if GNU ld & --enable-shared build shared library [default=yes if GNU ld &
ELF] ELF]
--enable-profile build profiled library [default=yes] --enable-profile build profiled library [default=no]
--enable-omitfp build undebuggable optimized library --enable-omitfp build undebuggable optimized library
[default=no] [default=no]
--enable-bounded build with runtime bounds checking --enable-bounded build with runtime bounds checking
@ -1543,7 +1543,7 @@ if test "${enable_profile+set}" = set; then
enableval="$enable_profile" enableval="$enable_profile"
profile=$enableval profile=$enableval
else else
profile=yes profile=no
fi; fi;
# Check whether --enable-omitfp or --disable-omitfp was given. # Check whether --enable-omitfp or --disable-omitfp was given.
if test "${enable_omitfp+set}" = set; then if test "${enable_omitfp+set}" = set; then

View File

@ -131,9 +131,9 @@ AC_ARG_ENABLE([shared],
[shared=default]) [shared=default])
AC_ARG_ENABLE([profile], AC_ARG_ENABLE([profile],
AC_HELP_STRING([--enable-profile], AC_HELP_STRING([--enable-profile],
[build profiled library @<:@default=yes@:>@]), [build profiled library @<:@default=no@:>@]),
[profile=$enableval], [profile=$enableval],
[profile=yes]) [profile=no])
AC_ARG_ENABLE([omitfp], AC_ARG_ENABLE([omitfp],
AC_HELP_STRING([--enable-omitfp], AC_HELP_STRING([--enable-omitfp],
[build undebuggable optimized library @<:@default=no@:>@]), [build undebuggable optimized library @<:@default=no@:>@]),