Changeset 259

Show
Ignore:
Timestamp:
12/20/04 10:39:50 (4 years ago)
Author:
morris
Message:

Reduce configure footprint, only test what we actually use, no matter what autoscan thinks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trackerd/trunk/Makefile.in

    r253 r259  
    1 SUBDIRS                                 = libzanka trackerd 
    2 DISTFILES                               = INSTALL LICENSE README Makefile Makefile.in config.guess config.h.in config.sub configure configure.in install-sh libzanka man run trackerd 
    3  
    4 WT_PACKAGE_VERSION              = @WT_PACKAGE_VERSION@ 
    5 WT_USER                                 = @WT_USER@ 
    6 WT_GROUP                                = @WT_GROUP@ 
     1# Makefile.in 
    72 
    83bindir                                  = @bindir@ 
     
    2116top_srcdir                              = @top_srcdir@ 
    2217 
     18WT_PACKAGE_VERSION              = @WT_PACKAGE_VERSION@ 
     19WT_USER                                 = @WT_USER@ 
     20WT_GROUP                                = @WT_GROUP@ 
     21 
     22SUBDIRS                                 = libzanka trackerd 
     23DISTFILES                               = INSTALL \ 
     24                                                  LICENSE \ 
     25                                                  README \ 
     26                                                  Makefile \ 
     27                                                  Makefile.in \ 
     28                                                  config.guess \ 
     29                                                  config.h.in \ 
     30                                                  config.sub \ 
     31                                                  configure \ 
     32                                                  configure.in \ 
     33                                                  install-sh \ 
     34                                                  libzanka \ 
     35                                                  man \ 
     36                                                  run \ 
     37                                                  trackerd 
    2338INSTALL                                 = @INSTALL@ 
    24 RM                                              = @RM@ 
    25 CP                                              = @CP@ 
    26 MV                                              = @MV@ 
    27 MKDIR                                   = @MKDIR@ 
    28 CHMOD                                   = @CHMOD@ 
    29 TAR                                             = @TAR@ 
    30 SED                                             = @SED@ 
    31 CUT                                             = @CUT@ 
    32 FIND                                    = @FIND@ 
    33 XARGS                                   = @XARGS@ 
    34 OPENSSL                                 = @OPENSSL@ 
    3539 
    3640all: all-recursive 
     
    3943        @list='$(SUBDIRS)'; \ 
    4044        for subdir in $$list; do \ 
    41                 target=`echo $@ | $(SED) s/-recursive//`; \ 
     45                target=`echo $@ | sed s/-recursive//`; \ 
    4246                echo "Making $$target in $$subdir"; \ 
    4347                (cd $$subdir && $(MAKE) $$target); \ 
     
    9094        fi 
    9195         
    92         @$(RM) -f .update 
     96        @rm -f .update 
    9397 
    9498install-man: 
     
    100104        @echo "Making $@ in ." 
    101105 
    102         $(RM) -rf wired-tracker-$(WT_PACKAGE_VERSION) 
    103         $(RM) -f wired-tracker-$(WT_PACKAGE_VERSION).tar.gz 
    104         $(MKDIR) wired-tracker-$(WT_PACKAGE_VERSION) 
     106        rm -rf wired-tracker-$(WT_PACKAGE_VERSION) 
     107        rm -f wired-tracker-$(WT_PACKAGE_VERSION).tar.gz 
     108        mkdir wired-tracker-$(WT_PACKAGE_VERSION) 
    105109 
    106110        @for i in $(DISTFILES); do \ 
    107                 $(CP) -pr $$i wired-tracker-$(WT_PACKAGE_VERSION)/$$i; \ 
     111                cp -pr $$i wired-tracker-$(WT_PACKAGE_VERSION)/$$i; \ 
    108112        done 
    109113         
    110114        $(MAKE) -C wired-tracker-$(WT_PACKAGE_VERSION) -f Makefile distclean cvsclean 
    111115 
    112         $(TAR) -czf wired-tracker-$(WT_PACKAGE_VERSION).tar.gz wired-tracker-$(WT_PACKAGE_VERSION) 
    113         $(RM) -rf wired-tracker-$(WT_PACKAGE_VERSION) 
     116        tar -czf wired-tracker-$(WT_PACKAGE_VERSION).tar.gz wired-tracker-$(WT_PACKAGE_VERSION) 
     117        rm -rf wired-tracker-$(WT_PACKAGE_VERSION) 
    114118         
    115119clean: clean-recursive 
    116120        @echo "Making $@ in ." 
    117121 
    118         $(RM) -f *.core 
     122        rm -f *.core 
    119123 
    120124distclean: clean distclean-recursive 
    121125        @echo "Making $@ in ." 
    122126 
    123         $(RM) -f Makefile config.h config.log config.status 
    124         $(RM) -f wired-tracker-$(WT_PACKAGE_VERSION).tar.gz 
     127        rm -f Makefile config.h config.log config.status 
     128        rm -f wired-tracker-$(WT_PACKAGE_VERSION).tar.gz 
    125129 
    126130autoclean: 
    127131        @echo "Making $@ in ." 
    128132         
    129         $(RM) -rf autom4te.cache 
    130         $(RM) -f autoscan.log configure.scan config.h.in~ 
     133        rm -rf autom4te.cache 
     134        rm -f autoscan.log configure.scan config.h.in~ 
    131135 
    132136cvsclean: 
    133137        @echo "Making $@ in ." 
    134          
    135         $(FIND) . -name .DS_Store -print0 | $(XARGS) -0 $(RM) -f 
    136         $(FIND) . -name CVS -print0 | $(XARGS) -0 $(RM) -rf 
     138 
     139        find . -name .DS_Store -print0 | xargs -0 rm -f 
     140        find . -name CVS -print0 | xargs -0 rm -rf 
  • trackerd/trunk/config.h.in

    r254 r259  
    11/* config.h.in.  Generated from configure.in by autoheader.  */ 
    22 
    3 /* Define to 1 if you have the <arpa/inet.h> header file. */ 
    4 #undef HAVE_ARPA_INET_H 
    5  
    6 /* Define to 1 if your system has a working `chown' function. */ 
    7 #undef HAVE_CHOWN 
    8  
    9 /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. 
    10    */ 
    11 #undef HAVE_DIRENT_H 
    12  
    13 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ 
    14 #undef HAVE_DOPRNT 
    15  
    16 /* Define to 1 if you have the <errno.h> header file. */ 
    17 #undef HAVE_ERRNO_H 
    18  
    19 /* Define to 1 if you have the <fcntl.h> header file. */ 
    20 #undef HAVE_FCNTL_H 
     3/* Define to 1 if you have the <CoreServices/CoreServices.h> header file. */ 
     4#undef HAVE_CORESERVICES_CORESERVICES_H 
    215 
    226/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ 
    237#undef HAVE_FSEEKO 
    248 
    25 /* Define to 1 if you have the `gettimeofday' function. */ 
    26 #undef HAVE_GETTIMEOFDAY 
     9/* Define to 1 if you have the `getifaddrs' function. */ 
     10#undef HAVE_GETIFADDRS 
    2711 
    28 /* Define to 1 if you have the `inet_ntoa' function. */ 
    29 #undef HAVE_INET_NTOA 
     12/* Define to 1 if you have the <getopt.h> header file. */ 
     13#undef HAVE_GETOPT_H 
     14 
     15/* Define to 1 if you have the <ifaddrs.h> header file. */ 
     16#undef HAVE_IFADDRS_H 
    3017 
    3118/* Define to 1 if you have the <inttypes.h> header file. */ 
    3219#undef HAVE_INTTYPES_H 
    3320 
    34 /* Define to 1 if you have the <limits.h> header file. */ 
    35 #undef HAVE_LIMITS_H 
    36  
    37 /* Define to 1 if you have the `localtime_r' function. */ 
    38 #undef HAVE_LOCALTIME_R 
    39  
    40 /* Define to 1 if `lstat' has the bug that it succeeds when given the 
    41    zero-length file name argument. */ 
    42 #undef HAVE_LSTAT_EMPTY_STRING_BUG 
    43  
    44 /* Define to 1 if your system has a GNU libc compatible `malloc' function, and 
    45    to 0 otherwise. */ 
    46 #undef HAVE_MALLOC 
    47  
    4821/* Define to 1 if you have the <memory.h> header file. */ 
    4922#undef HAVE_MEMORY_H 
    50  
    51 /* Define to 1 if you have the `memset' function. */ 
    52 #undef HAVE_MEMSET 
    53  
    54 /* Define to 1 if you have the `mkdir' function. */ 
    55 #undef HAVE_MKDIR 
    56  
    57 /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */ 
    58 #undef HAVE_NDIR_H 
    59  
    60 /* Define to 1 if you have the <netdb.h> header file. */ 
    61 #undef HAVE_NETDB_H 
    62  
    63 /* Define to 1 if you have the <netinet/in.h> header file. */ 
    64 #undef HAVE_NETINET_IN_H 
    6523 
    6624/* Define to 1 if you have the <openssl/sha.h> header file. */ 
     
    7028#undef HAVE_OPENSSL_SSL_H 
    7129 
    72 /* Define to 1 if you have the `pow' function. */ 
    73 #undef HAVE_POW 
     30/* Define to 1 if you have the <paths.h> header file. */ 
     31#undef HAVE_PATHS_H 
    7432 
    7533/* Define to 1 if you have the <pthread.h> header file. */ 
    7634#undef HAVE_PTHREAD_H 
    7735 
    78 /* Define to 1 if your system has a GNU libc compatible `realloc' function, 
    79    and to 0 otherwise. */ 
    80 #undef HAVE_REALLOC 
    81  
    82 /* Define to 1 if you have the `realpath' function. */ 
    83 #undef HAVE_REALPATH 
    84  
    85 /* Define to 1 if you have the `rmdir' function. */ 
    86 #undef HAVE_RMDIR 
    87  
    88 /* Define to 1 if you have the `select' function. */ 
    89 #undef HAVE_SELECT 
    90  
    9136/* Define to 1 if you have the `setproctitle' function. */ 
    9237#undef HAVE_SETPROCTITLE 
    93  
    94 /* Define to 1 if you have the `socket' function. */ 
    95 #undef HAVE_SOCKET 
    96  
    97 /* Define to 1 if `stat' has the bug that it succeeds when given the 
    98    zero-length file name argument. */ 
    99 #undef HAVE_STAT_EMPTY_STRING_BUG 
    100  
    101 /* Define to 1 if stdbool.h conforms to C99. */ 
    102 #undef HAVE_STDBOOL_H 
    10338 
    10439/* Define to 1 if you have the <stdint.h> header file. */ 
     
    10843#undef HAVE_STDLIB_H 
    10944 
    110 /* Define to 1 if you have the `strcasecmp' function. */ 
    111 #undef HAVE_STRCASECMP 
    112  
    11345/* Define to 1 if you have the `strcasestr' function. */ 
    11446#undef HAVE_STRCASESTR 
    115  
    116 /* Define to 1 if you have the `strchr' function. */ 
    117 #undef HAVE_STRCHR 
    118  
    119 /* Define to 1 if you have the `strdup' function. */ 
    120 #undef HAVE_STRDUP 
    121  
    122 /* Define to 1 if you have the `strerror' function. */ 
    123 #undef HAVE_STRERROR 
    124  
    125 /* Define to 1 if you have the `strftime' function. */ 
    126 #undef HAVE_STRFTIME 
    12747 
    12848/* Define to 1 if you have the <strings.h> header file. */ 
     
    13252#undef HAVE_STRING_H 
    13353 
     54/* Define to 1 if you have the `strlcat' function. */ 
     55#undef HAVE_STRLCAT 
     56 
    13457/* Define to 1 if you have the `strlcpy' function. */ 
    13558#undef HAVE_STRLCPY 
    13659 
    137 /* Define to 1 if you have the `strncasecmp' function. */ 
    138 #undef HAVE_STRNCASECMP 
    139  
    140 /* Define to 1 if you have the `strpbrk' function. */ 
    141 #undef HAVE_STRPBRK 
    142  
    143 /* Define to 1 if you have the `strrchr' function. */ 
    144 #undef HAVE_STRRCHR 
    145  
    14660/* Define to 1 if you have the `strsep' function. */ 
    14761#undef HAVE_STRSEP 
    148  
    149 /* Define to 1 if you have the `strstr' function. */ 
    150 #undef HAVE_STRSTR 
    151  
    152 /* Define to 1 if you have the `strtol' function. */ 
    153 #undef HAVE_STRTOL 
    154  
    155 /* Define to 1 if you have the `strtoul' function. */ 
    156 #undef HAVE_STRTOUL 
    157  
    158 /* Define to 1 if you have the `strtoull' function. */ 
    159 #undef HAVE_STRTOULL 
    16062 
    16163/* Define to 1 if `sin6_len' is member of `struct sockaddr_in6'. */ 
     
    16870#undef HAVE_STRUCT_SOCKADDR_SA_LEN 
    16971 
    170 /* Define to 1 if you have the <syslog.h> header file. */ 
    171 #undef HAVE_SYSLOG_H 
    172  
    173 /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'. 
    174    */ 
    175 #undef HAVE_SYS_DIR_H 
    176  
    177 /* Define to 1 if you have the <sys/ioctl.h> header file. */ 
    178 #undef HAVE_SYS_IOCTL_H 
    179  
    180 /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'. 
    181    */ 
    182 #undef HAVE_SYS_NDIR_H 
    183  
    184 /* Define to 1 if you have the <sys/param.h> header file. */ 
    185 #undef HAVE_SYS_PARAM_H 
    186  
    187 /* Define to 1 if you have the <sys/select.h> header file. */ 
    188 #undef HAVE_SYS_SELECT_H 
    189  
    190 /* Define to 1 if you have the <sys/socket.h> header file. */ 
    191 #undef HAVE_SYS_SOCKET_H 
     72/* Define to 1 if you have the <sys/sockio.h> header file. */ 
     73#undef HAVE_SYS_SOCKIO_H 
    19274 
    19375/* Define to 1 if you have the <sys/stat.h> header file. */ 
    19476#undef HAVE_SYS_STAT_H 
    19577 
    196 /* Define to 1 if you have the <sys/time.h> header file. */ 
    197 #undef HAVE_SYS_TIME_H 
    198  
    19978/* Define to 1 if you have the <sys/types.h> header file. */ 
    20079#undef HAVE_SYS_TYPES_H 
    201  
    202 /* Define to 1 if you have the <sys/vfs.h> header file. */ 
    203 #undef HAVE_SYS_VFS_H 
    204  
    205 /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */ 
    206 #undef HAVE_SYS_WAIT_H 
    207  
    208 /* Define to 1 if you have the `tzset' function. */ 
    209 #undef HAVE_TZSET 
    210  
    211 /* Define to 1 if you have the `uname' function. */ 
    212 #undef HAVE_UNAME 
    21380 
    21481/* Define to 1 if you have the <unistd.h> header file. */ 
    21582#undef HAVE_UNISTD_H 
    21683 
    217 /* Define to 1 if you have the `vprintf' function. */ 
    218 #undef HAVE_VPRINTF 
     84/* Define to 1 if you have the `vasprintf' function. */ 
     85#undef HAVE_VASPRINTF 
    21986 
    220 /* Define to 1 if the system has the type `_Bool'. */ 
    221 #undef HAVE__BOOL 
    222  
    223 /* Define to 1 if `lstat' dereferences a symlink specified with a trailing 
    224    slash. */ 
    225 #undef LSTAT_FOLLOWS_SLASHED_SYMLINK 
     87/* Define to 1 if you have the `vfprintf' function. */ 
     88#undef HAVE_VFPRINTF 
    22689 
    22790/* Define to the address where bug reports for this package should be sent. */ 
     
    240103#undef PACKAGE_VERSION 
    241104 
    242 /* Define as the return type of signal handlers (`int' or `void'). */ 
    243 #undef RETSIGTYPE 
    244  
    245 /* Define to the type of arg 1 for `select'. */ 
    246 #undef SELECT_TYPE_ARG1 
    247  
    248 /* Define to the type of args 2, 3 and 4 for `select'. */ 
    249 #undef SELECT_TYPE_ARG234 
    250  
    251 /* Define to the type of arg 5 for `select'. */ 
    252 #undef SELECT_TYPE_ARG5 
    253  
    254105/* Define to 1 if you have the ANSI C header files. */ 
    255106#undef STDC_HEADERS 
    256  
    257 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ 
    258 #undef TIME_WITH_SYS_TIME 
    259  
    260 /* Define to 1 if your <sys/time.h> declares `struct tm'. */ 
    261 #undef TM_IN_SYS_TIME 
    262107 
    263108/* Maintainer's email address */ 
     
    279124#undef WT_USER 
    280125 
     126/* Number of bits in a file offset, on hosts where this is settable. */ 
     127#undef _FILE_OFFSET_BITS 
     128 
    281129/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ 
    282130#undef _LARGEFILE_SOURCE 
    283131 
    284 /* Define to empty if `const' does not conform to ANSI C. */ 
    285 #undef const 
    286  
    287 /* Define to `int' if <sys/types.h> doesn't define. */ 
    288 #undef gid_t 
    289  
    290 /* Define to rpl_malloc if the replacement function should be used. */ 
    291 #undef malloc 
    292  
    293 /* Define to `int' if <sys/types.h> does not define. */ 
    294 #undef mode_t 
    295  
    296 /* Define to `long' if <sys/types.h> does not define. */ 
    297 #undef off_t 
    298  
    299 /* Define to rpl_realloc if the replacement function should be used. */ 
    300 #undef realloc 
    301  
    302 /* Define to `unsigned' if <sys/types.h> does not define. */ 
    303 #undef size_t 
    304  
    305 /* Define to `int' if <sys/types.h> doesn't define. */ 
    306 #undef uid_t 
    307  
    308 /* Define to empty if the keyword `volatile' does not work. Warning: valid 
    309    code using `volatile' can become incorrect without. Disable with care. */ 
    310 #undef volatile 
     132/* Define for large files, on AIX-style hosts. */ 
     133#undef _LARGE_FILES 
  • trackerd/trunk/configure

    r254 r259  
    312312 
    313313ac_subdirs_all="$ac_subdirs_all libzanka" 
    314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os WT_PACKAGE_VERSION CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA SET_MAKE WT_USER WT_GROUP MV CP RM MKDIR CHMOD TAR SED CUT FIND XARGS OPENSSL CPP EGREP LIBOBJS subdirs LTLIBOBJS' 
     314ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os WT_PACKAGE_VERSION CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA SET_MAKE WT_USER WT_GROUP CPP EGREP subdirs LIBOBJS LTLIBOBJS' 
    315315ac_subst_files='' 
    316316 
     
    851851  --enable-warnings       enable warnings 
    852852 
     853  --disable-largefile     omit support for large files 
    853854 
    854855Optional Packages: 
     
    25592560 
    25602561####################################################################### 
    2561 # Checks for programs. 
    2562  
    2563 # Extract the first word of "mv", so it can be a program name with args. 
    2564 set dummy mv; ac_word=$2 
    2565 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2566 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2567 if test "${ac_cv_prog_MV+set}" = set; then 
    2568   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2569 else 
    2570   if test -n "$MV"; then 
    2571   ac_cv_prog_MV="$MV" # Let the user override the test. 
    2572 else 
    2573 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2574 for as_dir in $PATH 
    2575 do 
    2576   IFS=$as_save_IFS 
    2577   test -z "$as_dir" && as_dir=. 
    2578   for ac_exec_ext in '' $ac_executable_extensions; do 
    2579   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2580     ac_cv_prog_MV="mv" 
    2581     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2582     break 2 
    2583   fi 
    2584 done 
    2585 done 
    2586  
    2587 fi 
    2588 fi 
    2589 MV=$ac_cv_prog_MV 
    2590 if test -n "$MV"; then 
    2591   echo "$as_me:$LINENO: result: $MV" >&5 
    2592 echo "${ECHO_T}$MV" >&6 
    2593 else 
    2594   echo "$as_me:$LINENO: result: no" >&5 
    2595 echo "${ECHO_T}no" >&6 
    2596 fi 
    2597  
    2598 # Extract the first word of "cp", so it can be a program name with args. 
    2599 set dummy cp; ac_word=$2 
    2600 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2601 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2602 if test "${ac_cv_prog_CP+set}" = set; then 
    2603   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2604 else 
    2605   if test -n "$CP"; then 
    2606   ac_cv_prog_CP="$CP" # Let the user override the test. 
    2607 else 
    2608 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2609 for as_dir in $PATH 
    2610 do 
    2611   IFS=$as_save_IFS 
    2612   test -z "$as_dir" && as_dir=. 
    2613   for ac_exec_ext in '' $ac_executable_extensions; do 
    2614   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2615     ac_cv_prog_CP="cp" 
    2616     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2617     break 2 
    2618   fi 
    2619 done 
    2620 done 
    2621  
    2622 fi 
    2623 fi 
    2624 CP=$ac_cv_prog_CP 
    2625 if test -n "$CP"; then 
    2626   echo "$as_me:$LINENO: result: $CP" >&5 
    2627 echo "${ECHO_T}$CP" >&6 
    2628 else 
    2629   echo "$as_me:$LINENO: result: no" >&5 
    2630 echo "${ECHO_T}no" >&6 
    2631 fi 
    2632  
    2633 # Extract the first word of "rm", so it can be a program name with args. 
    2634 set dummy rm; ac_word=$2 
    2635 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2636 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2637 if test "${ac_cv_prog_RM+set}" = set; then 
    2638   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2639 else 
    2640   if test -n "$RM"; then 
    2641   ac_cv_prog_RM="$RM" # Let the user override the test. 
    2642 else 
    2643 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2644 for as_dir in $PATH 
    2645 do 
    2646   IFS=$as_save_IFS 
    2647   test -z "$as_dir" && as_dir=. 
    2648   for ac_exec_ext in '' $ac_executable_extensions; do 
    2649   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2650     ac_cv_prog_RM="rm" 
    2651     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2652     break 2 
    2653   fi 
    2654 done 
    2655 done 
    2656  
    2657 fi 
    2658 fi 
    2659 RM=$ac_cv_prog_RM 
    2660 if test -n "$RM"; then 
    2661   echo "$as_me:$LINENO: result: $RM" >&5 
    2662 echo "${ECHO_T}$RM" >&6 
    2663 else 
    2664   echo "$as_me:$LINENO: result: no" >&5 
    2665 echo "${ECHO_T}no" >&6 
    2666 fi 
    2667  
    2668 # Extract the first word of "mkdir", so it can be a program name with args. 
    2669 set dummy mkdir; ac_word=$2 
    2670 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2671 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2672 if test "${ac_cv_prog_MKDIR+set}" = set; then 
    2673   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2674 else 
    2675   if test -n "$MKDIR"; then 
    2676   ac_cv_prog_MKDIR="$MKDIR" # Let the user override the test. 
    2677 else 
    2678 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2679 for as_dir in $PATH 
    2680 do 
    2681   IFS=$as_save_IFS 
    2682   test -z "$as_dir" && as_dir=. 
    2683   for ac_exec_ext in '' $ac_executable_extensions; do 
    2684   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2685     ac_cv_prog_MKDIR="mkdir" 
    2686     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2687     break 2 
    2688   fi 
    2689 done 
    2690 done 
    2691  
    2692 fi 
    2693 fi 
    2694 MKDIR=$ac_cv_prog_MKDIR 
    2695 if test -n "$MKDIR"; then 
    2696   echo "$as_me:$LINENO: result: $MKDIR" >&5 
    2697 echo "${ECHO_T}$MKDIR" >&6 
    2698 else 
    2699   echo "$as_me:$LINENO: result: no" >&5 
    2700 echo "${ECHO_T}no" >&6 
    2701 fi 
    2702  
    2703 # Extract the first word of "chmod", so it can be a program name with args. 
    2704 set dummy chmod; ac_word=$2 
    2705 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2706 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2707 if test "${ac_cv_prog_CHMOD+set}" = set; then 
    2708   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2709 else 
    2710   if test -n "$CHMOD"; then 
    2711   ac_cv_prog_CHMOD="$CHMOD" # Let the user override the test. 
    2712 else 
    2713 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2714 for as_dir in $PATH 
    2715 do 
    2716   IFS=$as_save_IFS 
    2717   test -z "$as_dir" && as_dir=. 
    2718   for ac_exec_ext in '' $ac_executable_extensions; do 
    2719   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2720     ac_cv_prog_CHMOD="chmod" 
    2721     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2722     break 2 
    2723   fi 
    2724 done 
    2725 done 
    2726  
    2727 fi 
    2728 fi 
    2729 CHMOD=$ac_cv_prog_CHMOD 
    2730 if test -n "$CHMOD"; then 
    2731   echo "$as_me:$LINENO: result: $CHMOD" >&5 
    2732 echo "${ECHO_T}$CHMOD" >&6 
    2733 else 
    2734   echo "$as_me:$LINENO: result: no" >&5 
    2735 echo "${ECHO_T}no" >&6 
    2736 fi 
    2737  
    2738 # Extract the first word of "tar", so it can be a program name with args. 
    2739 set dummy tar; ac_word=$2 
    2740 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2741 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2742 if test "${ac_cv_prog_TAR+set}" = set; then 
    2743   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2744 else 
    2745   if test -n "$TAR"; then 
    2746   ac_cv_prog_TAR="$TAR" # Let the user override the test. 
    2747 else 
    2748 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2749 for as_dir in $PATH 
    2750 do 
    2751   IFS=$as_save_IFS 
    2752   test -z "$as_dir" && as_dir=. 
    2753   for ac_exec_ext in '' $ac_executable_extensions; do 
    2754   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2755     ac_cv_prog_TAR="tar" 
    2756     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2757     break 2 
    2758   fi 
    2759 done 
    2760 done 
    2761  
    2762 fi 
    2763 fi 
    2764 TAR=$ac_cv_prog_TAR 
    2765 if test -n "$TAR"; then 
    2766   echo "$as_me:$LINENO: result: $TAR" >&5 
    2767 echo "${ECHO_T}$TAR" >&6 
    2768 else 
    2769   echo "$as_me:$LINENO: result: no" >&5 
    2770 echo "${ECHO_T}no" >&6 
    2771 fi 
    2772  
    2773 # Extract the first word of "sed", so it can be a program name with args. 
    2774 set dummy sed; ac_word=$2 
    2775 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2776 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2777 if test "${ac_cv_prog_SED+set}" = set; then 
    2778   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2779 else 
    2780   if test -n "$SED"; then 
    2781   ac_cv_prog_SED="$SED" # Let the user override the test. 
    2782 else 
    2783 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2784 for as_dir in $PATH 
    2785 do 
    2786   IFS=$as_save_IFS 
    2787   test -z "$as_dir" && as_dir=. 
    2788   for ac_exec_ext in '' $ac_executable_extensions; do 
    2789   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2790     ac_cv_prog_SED="sed" 
    2791     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2792     break 2 
    2793   fi 
    2794 done 
    2795 done 
    2796  
    2797 fi 
    2798 fi 
    2799 SED=$ac_cv_prog_SED 
    2800 if test -n "$SED"; then 
    2801   echo "$as_me:$LINENO: result: $SED" >&5 
    2802 echo "${ECHO_T}$SED" >&6 
    2803 else 
    2804   echo "$as_me:$LINENO: result: no" >&5 
    2805 echo "${ECHO_T}no" >&6 
    2806 fi 
    2807  
    2808 # Extract the first word of "cut", so it can be a program name with args. 
    2809 set dummy cut; ac_word=$2 
    2810 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2811 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2812 if test "${ac_cv_prog_CUT+set}" = set; then 
    2813   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2814 else 
    2815   if test -n "$CUT"; then 
    2816   ac_cv_prog_CUT="$CUT" # Let the user override the test. 
    2817 else 
    2818 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2819 for as_dir in $PATH 
    2820 do 
    2821   IFS=$as_save_IFS 
    2822   test -z "$as_dir" && as_dir=. 
    2823   for ac_exec_ext in '' $ac_executable_extensions; do 
    2824   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2825     ac_cv_prog_CUT="cut" 
    2826     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2827     break 2 
    2828   fi 
    2829 done 
    2830 done 
    2831  
    2832 fi 
    2833 fi 
    2834 CUT=$ac_cv_prog_CUT 
    2835 if test -n "$CUT"; then 
    2836   echo "$as_me:$LINENO: result: $CUT" >&5 
    2837 echo "${ECHO_T}$CUT" >&6 
    2838 else 
    2839   echo "$as_me:$LINENO: result: no" >&5 
    2840 echo "${ECHO_T}no" >&6 
    2841 fi 
    2842  
    2843 # Extract the first word of "find", so it can be a program name with args. 
    2844 set dummy find; ac_word=$2 
    2845 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2846 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2847 if test "${ac_cv_prog_FIND+set}" = set; then 
    2848   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2849 else 
    2850   if test -n "$FIND"; then 
    2851   ac_cv_prog_FIND="$FIND" # Let the user override the test. 
    2852 else 
    2853 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2854 for as_dir in $PATH 
    2855 do 
    2856   IFS=$as_save_IFS 
    2857   test -z "$as_dir" && as_dir=. 
    2858   for ac_exec_ext in '' $ac_executable_extensions; do 
    2859   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2860     ac_cv_prog_FIND="find" 
    2861     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2862     break 2 
    2863   fi 
    2864 done 
    2865 done 
    2866  
    2867 fi 
    2868 fi 
    2869 FIND=$ac_cv_prog_FIND 
    2870 if test -n "$FIND"; then 
    2871   echo "$as_me:$LINENO: result: $FIND" >&5 
    2872 echo "${ECHO_T}$FIND" >&6 
    2873 else 
    2874   echo "$as_me:$LINENO: result: no" >&5 
    2875 echo "${ECHO_T}no" >&6 
    2876 fi 
    2877  
    2878 # Extract the first word of "xargs", so it can be a program name with args. 
    2879 set dummy xargs; ac_word=$2 
    2880 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2881 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2882 if test "${ac_cv_prog_XARGS+set}" = set; then 
    2883   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2884 else 
    2885   if test -n "$XARGS"; then 
    2886   ac_cv_prog_XARGS="$XARGS" # Let the user override the test. 
    2887 else 
    2888 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2889 for as_dir in $PATH 
    2890 do 
    2891   IFS=$as_save_IFS 
    2892   test -z "$as_dir" && as_dir=. 
    2893   for ac_exec_ext in '' $ac_executable_extensions; do 
    2894   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2895     ac_cv_prog_XARGS="xargs" 
    2896     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2897     break 2 
    2898   fi 
    2899 done 
    2900 done 
    2901  
    2902 fi 
    2903 fi 
    2904 XARGS=$ac_cv_prog_XARGS 
    2905 if test -n "$XARGS"; then 
    2906   echo "$as_me:$LINENO: result: $XARGS" >&5 
    2907 echo "${ECHO_T}$XARGS" >&6 
    2908 else 
    2909   echo "$as_me:$LINENO: result: no" >&5 
    2910 echo "${ECHO_T}no" >&6 
    2911 fi 
    2912  
    2913 # Extract the first word of "openssl", so it can be a program name with args. 
    2914 set dummy openssl; ac_word=$2 
    2915 echo "$as_me:$LINENO: checking for $ac_word" >&5 
    2916 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 
    2917 if test "${ac_cv_prog_OPENSSL+set}" = set; then 
    2918   echo $ECHO_N "(cached) $ECHO_C" >&6 
    2919 else 
    2920   if test -n "$OPENSSL"; then 
    2921   ac_cv_prog_OPENSSL="$OPENSSL" # Let the user override the test. 
    2922 else 
    2923 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 
    2924 for as_dir in $PATH 
    2925 do 
    2926   IFS=$as_save_IFS 
    2927   test -z "$as_dir" && as_dir=. 
    2928   for ac_exec_ext in '' $ac_executable_extensions; do 
    2929   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 
    2930     ac_cv_prog_OPENSSL="openssl" 
    2931     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 
    2932     break 2 
    2933   fi 
    2934 done 
    2935 done 
    2936  
    2937 fi 
    2938 fi 
    2939 OPENSSL=$ac_cv_prog_OPENSSL 
    2940 if test -n "$OPENSSL"; then 
    2941   echo "$as_me:$LINENO: result: $OPENSSL" >&5 
    2942 echo "${ECHO_T}$OPENSSL" >&6 
    2943 else 
    2944   echo "$as_me:$LINENO: result: no" >&5 
    2945 echo "${ECHO_T}no" >&6 
    2946 fi 
    2947  
    2948  
    2949  
    2950 ####################################################################### 
    29512562# Checks for libraries 
    29522563 
     
    43183929 
    43193930 
    4320 # Check if the sockaddr structs have length members 
    4321 echo "$as_me:$LINENO: checking for struct sockaddr.sa_len" >&5 
    4322 echo $ECHO_N "checking for struct sockaddr.sa_len... $ECHO_C" >&6 
    4323 if test "${ac_cv_member_struct_sockaddr_sa_len+set}" = set; then 
    4324   echo $ECHO_N "(cached) $ECHO_C" >&6 
    4325 else 
    4326   cat >conftest.$ac_ext <<_ACEOF 
    4327 #line $LINENO "configure" 
    4328 /* confdefs.h.  */ 
    4329 _ACEOF 
    4330 cat confdefs.h >>conftest.$ac_ext 
    4331 cat >>conftest.$ac_ext <<_ACEOF 
    4332 /* end confdefs.h.  */ 
    4333  
    4334         #include <sys/types.h> 
    4335         #include <sys/socket.h> 
    4336         #include <netinet/in.h> 
    4337         #include <netdb.h> 
    4338  
    4339  
    4340 int 
    4341 main () 
    4342 
    4343 static struct sockaddr ac_aggr; 
    4344 if (ac_aggr.sa_len) 
    4345 return 0; 
    4346   ; 
    4347   return 0; 
    4348 
    4349 _ACEOF 
    4350 rm -f conftest.$ac_objext 
    4351 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 
    4352   (eval $ac_compile) 2>&5 
    4353   ac_status=$? 
    4354   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4355   (exit $ac_status); } && 
    4356          { ac_try='test -s conftest.$ac_objext' 
    4357   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 
    4358   (eval $ac_try) 2>&5 
    4359   ac_status=$? 
    4360   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4361   (exit $ac_status); }; }; then 
    4362   ac_cv_member_struct_sockaddr_sa_len=yes 
    4363 else 
    4364   echo "$as_me: failed program was:" >&5 
    4365 sed 's/^/| /' conftest.$ac_ext >&5 
    4366  
    4367 cat >conftest.$ac_ext <<_ACEOF 
    4368 #line $LINENO "configure" 
    4369 /* confdefs.h.  */ 
    4370 _ACEOF 
    4371 cat confdefs.h >>conftest.$ac_ext 
    4372 cat >>conftest.$ac_ext <<_ACEOF 
    4373 /* end confdefs.h.  */ 
    4374  
    4375         #include <sys/types.h> 
    4376         #include <sys/socket.h> 
    4377         #include <netinet/in.h> 
    4378         #include <netdb.h> 
    4379  
    4380  
    4381 int 
    4382 main () 
    4383 
    4384 static struct sockaddr ac_aggr; 
    4385 if (sizeof ac_aggr.sa_len) 
    4386 return 0; 
    4387   ; 
    4388   return 0; 
    4389 
    4390 _ACEOF 
    4391 rm -f conftest.$ac_objext 
    4392 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 
    4393   (eval $ac_compile) 2>&5 
    4394   ac_status=$? 
    4395   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4396   (exit $ac_status); } && 
    4397          { ac_try='test -s conftest.$ac_objext' 
    4398   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 
    4399   (eval $ac_try) 2>&5 
    4400   ac_status=$? 
    4401   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4402   (exit $ac_status); }; }; then 
    4403   ac_cv_member_struct_sockaddr_sa_len=yes 
    4404 else 
    4405   echo "$as_me: failed program was:" >&5 
    4406 sed 's/^/| /' conftest.$ac_ext >&5 
    4407  
    4408 ac_cv_member_struct_sockaddr_sa_len=no 
    4409 fi 
    4410 rm -f conftest.$ac_objext conftest.$ac_ext 
    4411 fi 
    4412 rm -f conftest.$ac_objext conftest.$ac_ext 
    4413 fi 
    4414 echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_sa_len" >&5 
    4415 echo "${ECHO_T}$ac_cv_member_struct_sockaddr_sa_len" >&6 
    4416 if test $ac_cv_member_struct_sockaddr_sa_len = yes; then 
    4417  
    4418 cat >>confdefs.h <<_ACEOF 
    4419 #define HAVE_STRUCT_SOCKADDR_SA_LEN 1 
    4420 _ACEOF 
    4421  
    4422  
    4423 fi 
    4424 echo "$as_me:$LINENO: checking for struct sockaddr_in.sin_len" >&5 
    4425 echo $ECHO_N "checking for struct sockaddr_in.sin_len... $ECHO_C" >&6 
    4426 if test "${ac_cv_member_struct_sockaddr_in_sin_len+set}" = set; then 
    4427   echo $ECHO_N "(cached) $ECHO_C" >&6 
    4428 else 
    4429   cat >conftest.$ac_ext <<_ACEOF 
    4430 #line $LINENO "configure" 
    4431 /* confdefs.h.  */ 
    4432 _ACEOF 
    4433 cat confdefs.h >>conftest.$ac_ext 
    4434 cat >>conftest.$ac_ext <<_ACEOF 
    4435 /* end confdefs.h.  */ 
    4436  
    4437         #include <sys/types.h> 
    4438         #include <sys/socket.h> 
    4439         #include <netinet/in.h> 
    4440         #include <netdb.h> 
    4441  
    4442  
    4443 int 
    4444 main () 
    4445 
    4446 static struct sockaddr_in ac_aggr; 
    4447 if (ac_aggr.sin_len) 
    4448 return 0; 
    4449   ; 
    4450   return 0; 
    4451 
    4452 _ACEOF 
    4453 rm -f conftest.$ac_objext 
    4454 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 
    4455   (eval $ac_compile) 2>&5 
    4456   ac_status=$? 
    4457   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4458   (exit $ac_status); } && 
    4459          { ac_try='test -s conftest.$ac_objext' 
    4460   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 
    4461   (eval $ac_try) 2>&5 
    4462   ac_status=$? 
    4463   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4464   (exit $ac_status); }; }; then 
    4465   ac_cv_member_struct_sockaddr_in_sin_len=yes 
    4466 else 
    4467   echo "$as_me: failed program was:" >&5 
    4468 sed 's/^/| /' conftest.$ac_ext >&5 
    4469  
    4470 cat >conftest.$ac_ext <<_ACEOF 
    4471 #line $LINENO "configure" 
    4472 /* confdefs.h.  */ 
    4473 _ACEOF 
    4474 cat confdefs.h >>conftest.$ac_ext 
    4475 cat >>conftest.$ac_ext <<_ACEOF 
    4476 /* end confdefs.h.  */ 
    4477  
    4478         #include <sys/types.h> 
    4479         #include <sys/socket.h> 
    4480         #include <netinet/in.h> 
    4481         #include <netdb.h> 
    4482  
    4483  
    4484 int 
    4485 main () 
    4486 
    4487 static struct sockaddr_in ac_aggr; 
    4488 if (sizeof ac_aggr.sin_len) 
    4489 return 0; 
    4490   ; 
    4491   return 0; 
    4492 
    4493 _ACEOF 
    4494 rm -f conftest.$ac_objext 
    4495 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 
    4496   (eval $ac_compile) 2>&5 
    4497   ac_status=$? 
    4498   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4499   (exit $ac_status); } && 
    4500          { ac_try='test -s conftest.$ac_objext' 
    4501   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 
    4502   (eval $ac_try) 2>&5 
    4503   ac_status=$? 
    4504   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4505   (exit $ac_status); }; }; then 
    4506   ac_cv_member_struct_sockaddr_in_sin_len=yes 
    4507 else 
    4508   echo "$as_me: failed program was:" >&5 
    4509 sed 's/^/| /' conftest.$ac_ext >&5 
    4510  
    4511 ac_cv_member_struct_sockaddr_in_sin_len=no 
    4512 fi 
    4513 rm -f conftest.$ac_objext conftest.$ac_ext 
    4514 fi 
    4515 rm -f conftest.$ac_objext conftest.$ac_ext 
    4516 fi 
    4517 echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_in_sin_len" >&5 
    4518 echo "${ECHO_T}$ac_cv_member_struct_sockaddr_in_sin_len" >&6 
    4519 if test $ac_cv_member_struct_sockaddr_in_sin_len = yes; then 
    4520  
    4521 cat >>confdefs.h <<_ACEOF 
    4522 #define HAVE_STRUCT_SOCKADDR_IN_SIN_LEN 1 
    4523 _ACEOF 
    4524  
    4525  
    4526 fi 
    4527 echo "$as_me:$LINENO: checking for struct sockaddr_in6.sin6_len" >&5 
    4528 echo $ECHO_N "checking for struct sockaddr_in6.sin6_len... $ECHO_C" >&6 
    4529 if test "${ac_cv_member_struct_sockaddr_in6_sin6_len+set}" = set; then 
    4530   echo $ECHO_N "(cached) $ECHO_C" >&6 
    4531 else 
    4532   cat >conftest.$ac_ext <<_ACEOF 
    4533 #line $LINENO "configure" 
    4534 /* confdefs.h.  */ 
    4535 _ACEOF 
    4536 cat confdefs.h >>conftest.$ac_ext 
    4537 cat >>conftest.$ac_ext <<_ACEOF 
    4538 /* end confdefs.h.  */ 
    4539  
    4540         #include <sys/types.h> 
    4541         #include <sys/socket.h> 
    4542         #include <netinet/in.h> 
    4543         #include <netdb.h> 
    4544  
    4545  
    4546 int 
    4547 main () 
    4548 
    4549 static struct sockaddr_in6 ac_aggr; 
    4550 if (ac_aggr.sin6_len) 
    4551 return 0; 
    4552   ; 
    4553   return 0; 
    4554 
    4555 _ACEOF 
    4556 rm -f conftest.$ac_objext 
    4557 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 
    4558   (eval $ac_compile) 2>&5 
    4559   ac_status=$? 
    4560   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4561   (exit $ac_status); } && 
    4562          { ac_try='test -s conftest.$ac_objext' 
    4563   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 
    4564   (eval $ac_try) 2>&5 
    4565   ac_status=$? 
    4566   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4567   (exit $ac_status); }; }; then 
    4568   ac_cv_member_struct_sockaddr_in6_sin6_len=yes 
    4569 else 
    4570   echo "$as_me: failed program was:" >&5 
    4571 sed 's/^/| /' conftest.$ac_ext >&5 
    4572  
    4573 cat >conftest.$ac_ext <<_ACEOF 
    4574 #line $LINENO "configure" 
    4575 /* confdefs.h.  */ 
    4576 _ACEOF 
    4577 cat confdefs.h >>conftest.$ac_ext 
    4578 cat >>conftest.$ac_ext <<_ACEOF 
    4579 /* end confdefs.h.  */ 
    4580  
    4581         #include <sys/types.h> 
    4582         #include <sys/socket.h> 
    4583         #include <netinet/in.h> 
    4584         #include <netdb.h> 
    4585  
    4586  
    4587 int 
    4588 main () 
    4589 
    4590 static struct sockaddr_in6 ac_aggr; 
    4591 if (sizeof ac_aggr.sin6_len) 
    4592 return 0; 
    4593   ; 
    4594   return 0; 
    4595 
    4596 _ACEOF 
    4597 rm -f conftest.$ac_objext 
    4598 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 
    4599   (eval $ac_compile) 2>&5 
    4600   ac_status=$? 
    4601   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4602   (exit $ac_status); } && 
    4603          { ac_try='test -s conftest.$ac_objext' 
    4604   { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 
    4605   (eval $ac_try) 2>&5 
    4606   ac_status=$? 
    4607   echo "$as_me:$LINENO: \$? = $ac_status" >&5 
    4608   (exit $ac_status); }; }; then 
    4609   ac_cv_member_struct_sockaddr_in6_sin6_len=yes 
    4610 else 
    4611   echo "$as_me: failed program was:" >&5 
    4612 sed 's/^/| /' conftest.$ac_ext >&5 
    4613  
    4614 ac_cv_member_struct_sockaddr_in6_sin6_len=no 
    4615 fi 
    4616 rm -f conftest.$ac_objext conftest.$ac_ext 
    4617 fi 
    4618 rm -f conftest.$ac_objext conftest.$ac_ext 
    4619 fi 
    4620 echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_in6_sin6_len" >&5 
    4621 echo "${ECHO_T}$ac_cv_member_struct_sockaddr_in6_sin6_len" >&6 
    4622 if test $ac_cv_member_struct_sockaddr_in6_sin6_len = yes; then 
    4623  
    4624 cat >>confdefs.h <<_ACEOF 
    4625 #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN 1 
    4626 _ACEOF 
    4627  
    4628  
    4629 fi 
    4630  
    4631  
    4632  
    4633 ####################################################################### 
    4634 # Checks for pthread 
    4635  
    4636 # pthreads test includes 
    4637  
    4638  
    4639  
    4640 # pthreads test function 
    4641  
    4642  
    4643  
    4644 # pthreads test program 
    4645  
    4646  
    4647  
    4648 # Try to compile the pthreads program 
    4649&n