Browse Source

remove libnsl check

pull/4/merge
Max Lv 12 years ago
parent
commit
d35b29eb2e
3 changed files with 378 additions and 391 deletions
  1. 8
      config.h.in
  2. 760
      configure
  3. 1
      configure.ac

8
config.h.in

@ -42,9 +42,6 @@
/* Define to 1 if you have the <langinfo.h> header file. */
#undef HAVE_LANGINFO_H
/* Define to 1 if you have the `nsl' library (-lnsl). */
#undef HAVE_LIBNSL
/* Define to 1 if you have the `rt' library (-lrt). */
#undef HAVE_LIBRT
@ -230,6 +227,11 @@
# endif
#endif
/* Enable large inode numbers on Mac OS X 10.5. */
#ifndef _DARWIN_USE_64_BIT_INODE
# define _DARWIN_USE_64_BIT_INODE 1
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS

760
configure
File diff suppressed because it is too large
View File

1
configure.ac

@ -65,7 +65,6 @@ AC_CHECK_FUNCS([memset select strndup setresuid setreuid strerror])
AC_SYS_LARGEFILE
AC_CHECK_LIB(nsl, gethostbyname)
AC_CHECK_LIB(socket, connect)
# Checks for library functions.

Loading…
Cancel
Save