Skip to content

Commit

Permalink
* configure.in: Disable building profile libraries by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Oct 18, 2006
1 parent 609cf61 commit ade0c15
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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@:>@]),
Expand Down

0 comments on commit ade0c15

Please sign in to comment.