diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-07 19:05:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-07 19:05:03 +0000 |
commit | 102a3e8f76a57d46d67eaf64ee8a5001802fa31e (patch) | |
tree | 8d6f484898b6c0a753962ab170f97df72568d8ea /configure.in | |
parent | 084909e80d31a655999d532def65346ec2072b8b (diff) | |
download | glibc-102a3e8f76a57d46d67eaf64ee8a5001802fa31e.tar glibc-102a3e8f76a57d46d67eaf64ee8a5001802fa31e.tar.gz glibc-102a3e8f76a57d46d67eaf64ee8a5001802fa31e.tar.bz2 glibc-102a3e8f76a57d46d67eaf64ee8a5001802fa31e.zip |
Don't warn about versioning if not on ELF system.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f1f7b71609..9e1e9c35fb 100644 --- a/configure.in +++ b/configure.in @@ -922,7 +922,7 @@ else fi AC_SUBST(VERSIONING) -if test $shared != no && test $VERSIONING = no; then +if test $elf = yes && 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 |