diff options
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/inet/Subdirs | 1 | ||||
-rw-r--r-- | sysdeps/unix/inet/configure | 9 | ||||
-rw-r--r-- | sysdeps/unix/inet/configure.ac | 7 |
3 files changed, 17 insertions, 0 deletions
diff --git a/sysdeps/unix/inet/Subdirs b/sysdeps/unix/inet/Subdirs index 0a02dd4447..1223e43a37 100644 --- a/sysdeps/unix/inet/Subdirs +++ b/sysdeps/unix/inet/Subdirs @@ -6,3 +6,4 @@ nis nscd nss streams +libidn diff --git a/sysdeps/unix/inet/configure b/sysdeps/unix/inet/configure new file mode 100644 index 0000000000..fd0afad16d --- /dev/null +++ b/sysdeps/unix/inet/configure @@ -0,0 +1,9 @@ +# This file is generated from configure.ac by Autoconf. DO NOT EDIT! + +if test "$shared" = yes; then : + + # Get this defined in config.h for main source code to test. + $as_echo "#define HAVE_LIBIDN 1" >>confdefs.h + + +fi diff --git a/sysdeps/unix/inet/configure.ac b/sysdeps/unix/inet/configure.ac new file mode 100644 index 0000000000..e9b3443733 --- /dev/null +++ b/sysdeps/unix/inet/configure.ac @@ -0,0 +1,7 @@ +dnl glibc configure fragment for sysdeps/unix/inet. +GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. + +AS_IF([test "$shared" = yes], [ + # Get this defined in config.h for main source code to test. + AC_DEFINE([HAVE_LIBIDN]) +]) |