From 102a3e8f76a57d46d67eaf64ee8a5001802fa31e Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 7 Jul 2001 19:05:03 +0000 Subject: [PATCH] Don't warn about versioning if not on ELF system. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.5