diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-10-09 15:48:55 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-10-09 15:48:55 -0700 |
commit | 7f82e4f470fd74ab3cef53941dc13bc005618759 (patch) | |
tree | b8e1411d735f5cf8744ea4cef053dcdf6ac05790 /libidn/configure | |
parent | b8493de0ec56473c5e6e7738cdaf033c49221826 (diff) | |
download | glibc-7f82e4f470fd74ab3cef53941dc13bc005618759.tar.gz glibc-7f82e4f470fd74ab3cef53941dc13bc005618759.tar.xz glibc-7f82e4f470fd74ab3cef53941dc13bc005618759.zip |
Automatically disable libidn add-on under --disable-shared.
Diffstat (limited to 'libidn/configure')
-rw-r--r-- | libidn/configure | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/libidn/configure b/libidn/configure index c6ba2eebc0..39ed163520 100644 --- a/libidn/configure +++ b/libidn/configure @@ -1,8 +1,16 @@ # This file is generated from configure.in by Autoconf. DO NOT EDIT! libc_add_on_canonical= -libc_add_on_subdirs=. -# Get this defined in config.h for main source code to test. -$as_echo "#define HAVE_LIBIDN 1" >>confdefs.h +if test "$shared" = yes; then : + libc_add_on_subdirs=. + + # Get this defined in config.h for main source code to test. + $as_echo "#define HAVE_LIBIDN 1" >>confdefs.h + + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libidn add-on ignored with --disable-shared" >&5 +$as_echo "$as_me: WARNING: libidn add-on ignored with --disable-shared" >&2;} +fi |