diff options
author | Roland McGrath <roland@gnu.org> | 2000-04-05 04:04:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-04-05 04:04:08 +0000 |
commit | 7499a22ad74341d5a1471ffc6014ba57a1a68293 (patch) | |
tree | a9f61df3d73bdd9cd19520353430a713e948b8d4 /configure.in | |
parent | 2c57ff212d2b3e669d9dfaf536e8af22012d6a8b (diff) | |
download | glibc-7499a22ad74341d5a1471ffc6014ba57a1a68293.tar glibc-7499a22ad74341d5a1471ffc6014ba57a1a68293.tar.gz glibc-7499a22ad74341d5a1471ffc6014ba57a1a68293.tar.bz2 glibc-7499a22ad74341d5a1471ffc6014ba57a1a68293.zip |
* Makeconfig: Undo last change.
* configure.in: If --disable-shared was given, don't set VERSIONING,
don't define DO_VERSIONING, and don't give scare warning for no
versioning.
* configure: Regenerated.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d4059ea9c8..39bf510d57 100644 --- a/configure.in +++ b/configure.in @@ -823,7 +823,8 @@ else libc_cv_ld_version_script_option=no fi rm -f conftest*]) -if test $libc_cv_asm_symver_directive = yes && +if test $shared != no && + test $libc_cv_asm_symver_directive = yes && test $libc_cv_ld_version_script_option = yes && test $enable_versioning = yes; then VERSIONING=yes @@ -833,7 +834,7 @@ else fi AC_SUBST(VERSIONING) -if test $VERSIONING = no; then +if test $shared != no && test $VERSIONING = no; then echo "\ *** WARNING: You should not compile GNU libc without versioning. Not using *** versioning will introduce incompatibilities so that old binaries |