Changeset 1796
- Timestamp:
- 03/09/05 21:25:23 (4 years ago)
- Files:
-
- wire/trunk/config.h.in (modified) (8 diffs)
- wire/trunk/configure (modified) (2 diffs)
- wire/trunk/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wire/trunk/config.h.in
r1752 r1796 3 3 /* Define to 1 if you have the <CoreServices/CoreServices.h> header file. */ 4 4 #undef HAVE_CORESERVICES_CORESERVICES_H 5 6 /* Define to 1 if you have the `daemon' function. */7 #undef HAVE_DAEMON8 5 9 6 /* Define to 1 if you have the declaration of … … 14 11 #undef HAVE_FSEEKO 15 12 16 /* Define to 1 if you have the `getifaddrs' function. */17 #undef HAVE_GETIFADDRS18 19 /* Define to 1 if you have the <getopt.h> header file. */20 #undef HAVE_GETOPT_H21 22 /* Define to 1 if you have the `getpagesize' function. */23 #undef HAVE_GETPAGESIZE24 25 13 /* Define to 1 if you have glibc. */ 26 14 #undef HAVE_GLIBC … … 28 16 /* Define to 1 if you have the <iconv.h> header file. */ 29 17 #undef HAVE_ICONV_H 30 31 /* Define to 1 if you have the <ifaddrs.h> header file. */32 #undef HAVE_IFADDRS_H33 18 34 19 /* Define to 1 if you have the <inttypes.h> header file. */ … … 43 28 /* Define to 1 if you have the <openssl/ssl.h> header file. */ 44 29 #undef HAVE_OPENSSL_SSL_H 45 46 /* Define to 1 if you have the <paths.h> header file. */47 #undef HAVE_PATHS_H48 30 49 31 /* Define to 1 if you have the <readline/readline.h> header file. */ … … 60 42 #undef HAVE_STDLIB_H 61 43 62 /* Define to 1 if you have the `strcasestr' function. */63 #undef HAVE_STRCASESTR64 65 44 /* Define to 1 if you have the <strings.h> header file. */ 66 45 #undef HAVE_STRINGS_H … … 68 47 /* Define to 1 if you have the <string.h> header file. */ 69 48 #undef HAVE_STRING_H 70 71 /* Define to 1 if you have the `strlcat' function. */72 #undef HAVE_STRLCAT73 74 /* Define to 1 if you have the `strlcpy' function. */75 #undef HAVE_STRLCPY76 77 /* Define to 1 if you have the `strsep' function. */78 #undef HAVE_STRSEP79 49 80 50 /* Define to 1 if `sin6_len' is member of `struct sockaddr_in6'. */ … … 86 56 /* Define to 1 if `sa_len' is member of `struct sockaddr'. */ 87 57 #undef HAVE_STRUCT_SOCKADDR_SA_LEN 88 89 /* Define to 1 if you have the <sys/sockio.h> header file. */90 #undef HAVE_SYS_SOCKIO_H91 58 92 59 /* Define to 1 if you have the <sys/stat.h> header file. */ … … 107 74 /* Define to 1 if you have the <unistd.h> header file. */ 108 75 #undef HAVE_UNISTD_H 109 110 /* Define to 1 if you have the `vasprintf' function. */111 #undef HAVE_VASPRINTF112 113 /* Define to 1 if you have the `vfprintf' function. */114 #undef HAVE_VFPRINTF115 76 116 77 /* Define to the address where bug reports for this package should be sent. */ wire/trunk/configure
r1752 r1796 5592 5592 5593 5593 5594 5595 5596 5597 5598 5594 for ac_header in \ 5599 sys/sockio.h \5600 getopt.h \5601 ifaddrs.h \5602 paths.h \5603 5595 termcap.h \ 5604 5596 termios.h \ … … 6209 6201 6210 6202 fi 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 for ac_func in \6222 daemon \6223 getifaddrs \6224 getpagesize \6225 strcasestr \6226 strlcat \6227 strlcpy \6228 strsep \6229 vasprintf \6230 vfprintf \6231 6232 do6233 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`6234 echo "$as_me:$LINENO: checking for $ac_func" >&56235 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&66236 if eval "test \"\${$as_ac_var+set}\" = set"; then6237 echo $ECHO_N "(cached) $ECHO_C" >&66238 else6239 cat >conftest.$ac_ext <<_ACEOF6240 #line $LINENO "configure"6241 /* confdefs.h. */6242 _ACEOF6243 cat confdefs.h >>conftest.$ac_ext6244 cat >>conftest.$ac_ext <<_ACEOF6245 /* end confdefs.h. */6246 /* System header to define __stub macros and hopefully few prototypes,6247 which can conflict with char $ac_func (); below.6248 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since6249 <limits.h> exists even on freestanding compilers. */6250 #ifdef __STDC__6251 # include <limits.h>6252 #else6253 # include <assert.h>6254 #endif6255 /* Override any gcc2 internal prototype to avoid an error. */6256 #ifdef __cplusplus6257 extern "C"6258 {6259 #endif6260 /* We use char because int might match the return type of a gcc26261 builtin and then its argument prototype would still apply. */6262 char $ac_func ();6263 /* The GNU C library defines this for functions which it implements6264 to always fail with ENOSYS. Some functions are actually named6265 something starting with __ and the normal name is an alias. */6266 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)6267 choke me6268 #else6269 char (*f) () = $ac_func;6270 #endif6271 #ifdef __cplusplus6272 }6273 #endif6274 6275 int6276 main ()6277 {6278 return f != $ac_func;6279 ;6280 return 0;6281 }6282 _ACEOF6283 rm -f conftest.$ac_objext conftest$ac_exeext6284 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&56285 (eval $ac_link) 2>&56286 ac_status=$?6287 echo "$as_me:$LINENO: \$? = $ac_status" >&56288 (exit $ac_status); } &&6289 { ac_try='test -s conftest$ac_exeext'6290 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&56291 (eval $ac_try) 2>&56292 ac_status=$?6293 echo "$as_me:$LINENO: \$? = $ac_status" >&56294 (exit $ac_status); }; }; then6295 eval "$as_ac_var=yes"6296 else6297 echo "$as_me: failed program was:" >&56298 sed 's/^/| /' conftest.$ac_ext >&56299 6300 eval "$as_ac_var=no"6301 fi6302 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext6303 fi6304 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&56305 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&66306 if test `eval echo '${'$as_ac_var'}'` = yes; then6307 cat >>confdefs.h <<_ACEOF6308 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 16309 _ACEOF6310 6311 fi6312 done6313 6203 6314 6204 wire/trunk/configure.in
r1752 r1796 263 263 264 264 AC_CHECK_HEADERS([ \ 265 sys/sockio.h \266 getopt.h \267 ifaddrs.h \268 paths.h \269 265 termcap.h \ 270 266 termios.h \ … … 282 278 283 279 AC_FUNC_FSEEKO 284 AC_CHECK_FUNCS([ \285 daemon \286 getifaddrs \287 getpagesize \288 strcasestr \289 strlcat \290 strlcpy \291 strsep \292 vasprintf \293 vfprintf \294 ])295 280 296 281
