diff options
author | Jim Meyering <jim@meyering.net> | 2005-10-01 09:51:00 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-10-01 09:51:00 +0000 |
commit | adcbbb9946ffa59dcf87cc3035ae100e22f36eda (patch) | |
tree | a88a32e3229f2a2001c073cab86ed33ea3bb6c35 | |
parent | 22c2d2efaf0c634dabd59d333b205459ccc9d355 (diff) | |
download | coreutils-adcbbb9946ffa59dcf87cc3035ae100e22f36eda.tar.xz |
.
-rw-r--r-- | config.hin | 18 | ||||
-rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/config.hin b/config.hin index 6d228d7dd..247622e6c 100644 --- a/config.hin +++ b/config.hin @@ -215,6 +215,10 @@ */ #undef HAVE_DECL_FREE +/* Define to 1 if you have the declaration of `freeaddrinfo', and to 0 if you + don't. */ +#undef HAVE_DECL_FREEADDRINFO + /* Define to 1 if you have the declaration of `funlockfile', and to 0 if you don't. */ #undef HAVE_DECL_FUNLOCKFILE @@ -223,6 +227,14 @@ you don't. */ #undef HAVE_DECL_FWRITE_UNLOCKED +/* Define to 1 if you have the declaration of `gai_strerror', and to 0 if you + don't. */ +#undef HAVE_DECL_GAI_STRERROR + +/* Define to 1 if you have the declaration of `getaddrinfo', and to 0 if you + don't. */ +#undef HAVE_DECL_GETADDRINFO + /* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_GETCHAR_UNLOCKED @@ -687,6 +699,9 @@ /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */ #undef HAVE_NDIR_H +/* Define to 1 if you have the <netdb.h> header file. */ +#undef HAVE_NETDB_H + /* Define to 1 if you have the <netinet/in.h> header file. */ #undef HAVE_NETINET_IN_H @@ -879,6 +894,9 @@ /* Define to 1 if you have the `strtoumax' function. */ #undef HAVE_STRTOUMAX +/* Define to 1 if the system has the type `struct addrinfo'. */ +#undef HAVE_STRUCT_ADDRINFO + /* Define if there is a member named d_type in the struct describing directory headers. */ #undef HAVE_STRUCT_DIRENT_D_TYPE diff --git a/src/Makefile.in b/src/Makefile.in index 73517d7da..e18d34a73 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -957,7 +957,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ |