home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / XARCHIE3.TAR / xarchie-2.0.1 / configure < prev    next >
Encoding:
Text File  |  1993-03-23  |  16.1 KB  |  567 lines

  1. #!/bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf.
  4. # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10.  
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15.  
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]
  21. #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]
  22. # Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and
  23. # --with-PACKAGE unless this script has special code to handle it.
  24.  
  25.  
  26. for arg
  27. do
  28.   # Handle --exec-prefix with a space before the argument.
  29.   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  30.   # Handle --host with a space before the argument.
  31.   elif test x$next_host = xyes; then next_host=
  32.   # Handle --prefix with a space before the argument.
  33.   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  34.   # Handle --srcdir with a space before the argument.
  35.   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  36.   else
  37.     case $arg in
  38.      # For backward compatibility, also recognize exact --exec_prefix.
  39.      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  40.     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  41.      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  42.     next_exec_prefix=yes ;;
  43.  
  44.      -gas | --gas | --ga | --g) ;;
  45.  
  46.      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  47.      -host | --host | --hos | --ho | --h)
  48.     next_host=yes ;;
  49.  
  50.      -nfp | --nfp | --nf) ;;
  51.  
  52.      -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)
  53.         no_create=1 ;;
  54.  
  55.      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  56.     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  57.      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  58.     next_prefix=yes ;;
  59.  
  60.      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  61.     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  62.      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  63.     next_srcdir=yes ;;
  64.  
  65.      -with-* | --with-*)
  66.        package=`echo $arg|sed 's/-*with-//'`
  67.        # Delete all the valid chars; see if any are left.
  68.        if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then
  69.          echo "configure: $package: invalid package name" >&2; exit 1
  70.        fi
  71.        eval "with_`echo $package|sed s/-/_/g`=1" ;;
  72.  
  73.      *) ;;
  74.     esac
  75.   fi
  76. done
  77.  
  78. trap 'rm -f conftest* core; exit 1' 1 3 15
  79.  
  80. rm -f conftest*
  81. compile='${CC-cc} $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  82.  
  83. # A filename unique to this package, relative to the directory that
  84. # configure is in, which we can look for to find out if srcdir is correct.
  85. unique_file=xarchie.c
  86.  
  87. # Find the source files, if location was not specified.
  88. if test -z "$srcdir"; then
  89.   srcdirdefaulted=yes
  90.   # Try the directory containing this script, then `..'.
  91.   prog=$0
  92.   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  93.   test "X$confdir" = "X$prog" && confdir=.
  94.   srcdir=$confdir
  95.   if test ! -r $srcdir/$unique_file; then
  96.     srcdir=..
  97.   fi
  98. fi
  99. if test ! -r $srcdir/$unique_file; then
  100.   if test x$srcdirdefaulted = xyes; then
  101.     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  102.   else
  103.     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  104.   fi
  105.   exit 1
  106. fi
  107. # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  108. # But we can't avoid them for `..', to make subdirectories work.
  109. case $srcdir in
  110.   .|/*|~*) ;;
  111.   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  112. esac
  113.  
  114.  
  115. if test -z "$CC"; then
  116.   echo checking for gcc
  117.   saveifs="$IFS"; IFS="${IFS}:"
  118.   for dir in $PATH; do
  119.     test -z "$dir" && dir=.
  120.     if test -f $dir/gcc; then
  121.       CC="gcc"
  122.       break
  123.     fi
  124.   done
  125.   IFS="$saveifs"
  126. fi
  127. test -z "$CC" && CC="cc"
  128.  
  129. # Find out if we are using GNU C, under whatever name.
  130. cat > conftest.c <<EOF
  131. #ifdef __GNUC__
  132.   yes
  133. #endif
  134. EOF
  135. ${CC-cc} -E conftest.c > conftest.out 2>&1
  136. if egrep yes conftest.out >/dev/null 2>&1; then
  137.   GCC=1 # For later tests.
  138. fi
  139. rm -f conftest*
  140.  
  141. echo checking how to run the C preprocessor
  142. if test -z "$CPP"; then
  143.   CPP='${CC-cc} -E'
  144.   cat > conftest.c <<EOF
  145. #include <stdio.h>
  146. EOF
  147. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  148. if test -z "$err"; then
  149.   :
  150. else
  151.   CPP=/lib/cpp
  152. fi
  153. rm -f conftest*
  154. fi
  155.  
  156. if test -n "$GCC"; then
  157.   echo checking whether -traditional is needed
  158.   pattern="Autoconf.*'x'"
  159.   prog='#include <sgtty.h>
  160. Autoconf TIOCGETP'
  161.   cat > conftest.c <<EOF
  162. $prog
  163. EOF
  164. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  165. if egrep "$pattern" conftest.out >/dev/null 2>&1; then
  166.   need_trad=1
  167. fi
  168. rm -f conftest*
  169.  
  170.  
  171.   if test -z "$need_trad"; then
  172.     prog='#include <termio.h>
  173. Autoconf TCGETA'
  174.     cat > conftest.c <<EOF
  175. $prog
  176. EOF
  177. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  178. if egrep "$pattern" conftest.out >/dev/null 2>&1; then
  179.   need_trad=1
  180. fi
  181. rm -f conftest*
  182.  
  183.   fi
  184.   test -n "$need_trad" && CC="$CC -traditional"
  185. fi
  186.  
  187. echo checking for POSIXized ISC
  188. if test -d /etc/conf/kconfig.d &&
  189.   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  190. then
  191.   ISC=1 # If later tests want to check for ISC.
  192.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  193. SEDDEFS="${SEDDEFS}\${SEDdA}_POSIX_SOURCE\${SEDdB}_POSIX_SOURCE\${SEDdC}1\${SEDdD}
  194. \${SEDuA}_POSIX_SOURCE\${SEDuB}_POSIX_SOURCE\${SEDuC}1\${SEDuD}
  195. \${SEDeA}_POSIX_SOURCE\${SEDeB}_POSIX_SOURCE\${SEDeC}1\${SEDeD}
  196. "
  197.   if test -n "$GCC"; then
  198.     CC="$CC -posix"
  199.   else
  200.     CC="$CC -Xp"
  201.   fi
  202. fi
  203.  
  204. echo checking for IRIX libsun
  205. if test -f /usr/lib/libsun.a; then
  206.   LIBS="$LIBS -lsun"
  207. fi
  208.  
  209. echo checking for ANSI C header files
  210. cat > conftest.c <<EOF
  211. #include <stdlib.h>
  212. #include <stdarg.h>
  213. #include <string.h>
  214. #include <float.h>
  215. EOF
  216. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  217. if test -z "$err"; then
  218.   # SunOS string.h does not declare mem*, contrary to ANSI.
  219. echo '#include <string.h>' > conftest.c
  220. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  221. if egrep "memchr" conftest.out >/dev/null 2>&1; then
  222.   # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  223. cat > conftest.c <<EOF
  224. #include <ctype.h>
  225. #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  226. #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  227. #define XOR(e,f) (((e) && !(f)) || (!(e) && (f)))
  228. int main () { int i; for (i = 0; i < 256; i++)
  229. if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
  230. exit (0); }
  231.  
  232. EOF
  233. eval $compile
  234. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  235.   DEFS="$DEFS -DSTDC_HEADERS=1"
  236. SEDDEFS="${SEDDEFS}\${SEDdA}STDC_HEADERS\${SEDdB}STDC_HEADERS\${SEDdC}1\${SEDdD}
  237. \${SEDuA}STDC_HEADERS\${SEDuB}STDC_HEADERS\${SEDuC}1\${SEDuD}
  238. \${SEDeA}STDC_HEADERS\${SEDeB}STDC_HEADERS\${SEDeC}1\${SEDeD}
  239. "
  240. fi
  241. rm -f conftest*
  242. fi
  243. rm -f conftest*
  244.  
  245. fi
  246. rm -f conftest*
  247.  
  248. for hdr in string.h memory.h sys/param.h
  249. do
  250. trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  251. echo checking for ${hdr}
  252. cat > conftest.c <<EOF
  253. #include <${hdr}>
  254. EOF
  255. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  256. if test -z "$err"; then
  257.   DEFS="$DEFS -D${trhdr}=1"
  258. SEDDEFS="${SEDDEFS}\${SEDdA}${trhdr}\${SEDdB}${trhdr}\${SEDdC}1\${SEDdD}
  259. \${SEDuA}${trhdr}\${SEDuB}${trhdr}\${SEDuC}1\${SEDuD}
  260. \${SEDeA}${trhdr}\${SEDeB}${trhdr}\${SEDeC}1\${SEDeD}
  261. "
  262. fi
  263. rm -f conftest*
  264. done
  265.  
  266. echo checking for fd_set in sys/types.h
  267. cat > conftest.c <<EOF
  268. #include <sys/types.h>
  269. main() { exit(0); } 
  270. t() { fd_set foo; }
  271. EOF
  272. if eval $compile; then
  273.   DEFS="$DEFS -DFD_SET_IN_SYS_TYPES_H=1"
  274. SEDDEFS="${SEDDEFS}\${SEDdA}FD_SET_IN_SYS_TYPES_H\${SEDdB}FD_SET_IN_SYS_TYPES_H\${SEDdC}1\${SEDdD}
  275. \${SEDuA}FD_SET_IN_SYS_TYPES_H\${SEDuB}FD_SET_IN_SYS_TYPES_H\${SEDuC}1\${SEDuD}
  276. \${SEDeA}FD_SET_IN_SYS_TYPES_H\${SEDeB}FD_SET_IN_SYS_TYPES_H\${SEDeC}1\${SEDeD}
  277. "
  278. else
  279.   echo checking for fd_set in sys/select.h
  280. cat > conftest.c <<EOF
  281. #include <sys/select.h>
  282. main() { exit(0); } 
  283. t() { fd_set foo; }
  284. EOF
  285. if eval $compile; then
  286.   DEFS="$DEFS -DFD_SET_IN_SYS_SELECT_H=1"
  287. SEDDEFS="${SEDDEFS}\${SEDdA}FD_SET_IN_SYS_SELECT_H\${SEDdB}FD_SET_IN_SYS_SELECT_H\${SEDdC}1\${SEDdD}
  288. \${SEDuA}FD_SET_IN_SYS_SELECT_H\${SEDuB}FD_SET_IN_SYS_SELECT_H\${SEDuC}1\${SEDuD}
  289. \${SEDeA}FD_SET_IN_SYS_SELECT_H\${SEDeB}FD_SET_IN_SYS_SELECT_H\${SEDeC}1\${SEDeD}
  290. "
  291. else
  292.   echo checking for fd_set in sys/inet.h
  293. cat > conftest.c <<EOF
  294. #include <sys/inet.h>
  295. main() { exit(0); } 
  296. t() { fd_set foo; }
  297. EOF
  298. if eval $compile; then
  299.   DEFS="$DEFS -DFD_SET_IN_SYS_INET_H=1"
  300. SEDDEFS="${SEDDEFS}\${SEDdA}FD_SET_IN_SYS_INET_H\${SEDdB}FD_SET_IN_SYS_INET_H\${SEDdC}1\${SEDdD}
  301. \${SEDuA}FD_SET_IN_SYS_INET_H\${SEDuB}FD_SET_IN_SYS_INET_H\${SEDuC}1\${SEDuD}
  302. \${SEDeA}FD_SET_IN_SYS_INET_H\${SEDeB}FD_SET_IN_SYS_INET_H\${SEDeC}1\${SEDeD}
  303. "
  304. fi
  305. rm -f conftest*
  306.  
  307. fi
  308. rm -f conftest*
  309.  
  310. fi
  311. rm -f conftest*
  312.  
  313. echo checking for struct tm in time.h
  314. cat > conftest.c <<EOF
  315. #include <sys/types.h>
  316. #include <time.h>
  317. main() { exit(0); } 
  318. t() { struct tm *tp; }
  319. EOF
  320. if eval $compile; then
  321.   :
  322. else
  323.   DEFS="$DEFS -DTM_IN_SYS_TIME=1"
  324. SEDDEFS="${SEDDEFS}\${SEDdA}TM_IN_SYS_TIME\${SEDdB}TM_IN_SYS_TIME\${SEDdC}1\${SEDdD}
  325. \${SEDuA}TM_IN_SYS_TIME\${SEDuB}TM_IN_SYS_TIME\${SEDuC}1\${SEDuD}
  326. \${SEDeA}TM_IN_SYS_TIME\${SEDeB}TM_IN_SYS_TIME\${SEDeC}1\${SEDeD}
  327. "
  328. fi
  329. rm -f conftest*
  330.  
  331. for func in re_comp regcmp strcasecmp random rand strerror getlogin getpwuid
  332. do
  333. trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  334. echo checking for ${func}
  335. cat > conftest.c <<EOF
  336. #include <stdio.h>
  337. main() { exit(0); } 
  338. t() { 
  339. #ifdef __stub_${func}
  340. choke me
  341. #else
  342. /* Override any gcc2 internal prototype to avoid an error.  */
  343. extern char ${func}(); ${func}();
  344. #endif
  345.  }
  346. EOF
  347. if eval $compile; then
  348.   DEFS="$DEFS -D${trfunc}=1"
  349. SEDDEFS="${SEDDEFS}\${SEDdA}${trfunc}\${SEDdB}${trfunc}\${SEDdC}1\${SEDdD}
  350. \${SEDuA}${trfunc}\${SEDuB}${trfunc}\${SEDuC}1\${SEDuD}
  351. \${SEDeA}${trfunc}\${SEDeB}${trfunc}\${SEDeC}1\${SEDeD}
  352. "
  353. fi
  354. rm -f conftest*
  355. #endif
  356. done
  357.  
  358. for func in strspn
  359. do
  360. trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  361. echo checking for ${func}
  362. cat > conftest.c <<EOF
  363. #include <stdio.h>
  364. main() { exit(0); } 
  365. t() { 
  366. #ifdef __stub_${func}
  367. choke me
  368. #else
  369. /* Override any gcc2 internal prototype to avoid an error.  */
  370. extern char ${func}(); ${func}();
  371. #endif
  372.  }
  373. EOF
  374. if eval $compile; then
  375.   DEFS="$DEFS -D${trfunc}=1"
  376. SEDDEFS="${SEDDEFS}\${SEDdA}${trfunc}\${SEDdB}${trfunc}\${SEDdC}1\${SEDdD}
  377. \${SEDuA}${trfunc}\${SEDuB}${trfunc}\${SEDuC}1\${SEDuD}
  378. \${SEDeA}${trfunc}\${SEDeB}${trfunc}\${SEDeC}1\${SEDeD}
  379. "
  380. fi
  381. rm -f conftest*
  382. #endif
  383. done
  384.  
  385. echo checking for errno
  386. cat > conftest.c <<EOF
  387.  
  388. main() { exit(0); } 
  389. t() { extern int errno; int i=errno; }
  390. EOF
  391. if eval $compile; then
  392.   DEFS="$DEFS -DHAVE_ERRNO=1"
  393. SEDDEFS="${SEDDEFS}\${SEDdA}HAVE_ERRNO\${SEDdB}HAVE_ERRNO\${SEDdC}1\${SEDdD}
  394. \${SEDuA}HAVE_ERRNO\${SEDuB}HAVE_ERRNO\${SEDuC}1\${SEDuD}
  395. \${SEDeA}HAVE_ERRNO\${SEDeB}HAVE_ERRNO\${SEDeC}1\${SEDeD}
  396. "
  397. fi
  398. rm -f conftest*
  399.  
  400. echo checking for sys_errlist
  401. cat > conftest.c <<EOF
  402.  
  403. main() { exit(0); } 
  404. t() { extern char **sys_errlist; char *s=*sys_errlist; }
  405. EOF
  406. if eval $compile; then
  407.   DEFS="$DEFS -DHAVE_SYS_ERRLIST=1"
  408. SEDDEFS="${SEDDEFS}\${SEDdA}HAVE_SYS_ERRLIST\${SEDdB}HAVE_SYS_ERRLIST\${SEDdC}1\${SEDdD}
  409. \${SEDuA}HAVE_SYS_ERRLIST\${SEDuB}HAVE_SYS_ERRLIST\${SEDuC}1\${SEDuD}
  410. \${SEDeA}HAVE_SYS_ERRLIST\${SEDeB}HAVE_SYS_ERRLIST\${SEDeC}1\${SEDeD}
  411. "
  412. fi
  413. rm -f conftest*
  414.  
  415. echo checking whether -lresolv is needed
  416. cat > conftest.c <<EOF
  417. #include "resolv.c"
  418. EOF
  419. eval $compile
  420. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  421.   :
  422. else
  423.   DEFS="$DEFS -DNEED_LRESOLV=1"
  424. SEDDEFS="${SEDDEFS}\${SEDdA}NEED_LRESOLV\${SEDdB}NEED_LRESOLV\${SEDdC}1\${SEDdD}
  425. \${SEDuA}NEED_LRESOLV\${SEDuB}NEED_LRESOLV\${SEDuC}1\${SEDuD}
  426. \${SEDeA}NEED_LRESOLV\${SEDeB}NEED_LRESOLV\${SEDeC}1\${SEDeD}
  427. "
  428. fi
  429. rm -f conftest*
  430. if test -n "$prefix"; then
  431.   test -z "$exec_prefix" && exec_prefix='${prefix}'
  432.   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  433. fi
  434. if test -n "$exec_prefix"; then
  435.   prsub="$prsub
  436. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%\
  437. exec_prefix\\1=\\2$exec_prefix%"
  438. fi
  439.  
  440. trap 'rm -f config.status; exit 1' 1 3 15
  441. echo creating config.status
  442. rm -f config.status
  443. cat > config.status <<EOF
  444. #!/bin/sh
  445. # Generated automatically by configure.
  446. # Run this file to recreate the current configuration.
  447. # This directory was configured as follows,
  448. # on host `(hostname || uname -n) 2>/dev/null`:
  449. #
  450. # $0 $*
  451.  
  452. for arg
  453. do
  454.   case "\$arg" in
  455.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  456.     exec /bin/sh $0 $* ;;
  457.     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  458.   esac
  459. done
  460.  
  461. trap 'rm -f  config.h conftest*; exit 1' 1 3 15
  462. CC='$CC'
  463. CPP='$CPP'
  464. FD_SET_IN_SYS_TYPES_H='$FD_SET_IN_SYS_TYPES_H'
  465. FD_SET_IN_SYS_SELECT_H='$FD_SET_IN_SYS_SELECT_H'
  466. FD_SET_IN_SYS_INET_H='$FD_SET_IN_SYS_INET_H'
  467. HAVE_ERRNO='$HAVE_ERRNO'
  468. HAVE_SYS_ERRLIST='$HAVE_SYS_ERRLIST'
  469. NEED_LRESOLV='$NEED_LRESOLV'
  470. LIBS='$LIBS'
  471. srcdir='$srcdir'
  472. prefix='$prefix'
  473. exec_prefix='$exec_prefix'
  474. prsub='$prsub'
  475. EOF
  476. cat >> config.status <<\EOF
  477.  
  478. top_srcdir=$srcdir
  479. for file in .. ; do if [ "x$file" != "x.." ]; then
  480.   srcdir=$top_srcdir
  481.   # Remove last slash and all that follows it.  Not all systems have dirname.
  482.   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  483.   if test "$dir" != "$file"; then
  484.     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  485.     test ! -d $dir && mkdir $dir
  486.   fi
  487.   echo creating $file
  488.   rm -f $file
  489.   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  490.   sed -e "
  491. $prsub
  492. s%@CC@%$CC%g
  493. s%@CPP@%$CPP%g
  494. s%@FD_SET_IN_SYS_TYPES_H@%$FD_SET_IN_SYS_TYPES_H%g
  495. s%@FD_SET_IN_SYS_SELECT_H@%$FD_SET_IN_SYS_SELECT_H%g
  496. s%@FD_SET_IN_SYS_INET_H@%$FD_SET_IN_SYS_INET_H%g
  497. s%@HAVE_ERRNO@%$HAVE_ERRNO%g
  498. s%@HAVE_SYS_ERRLIST@%$HAVE_SYS_ERRLIST%g
  499. s%@NEED_LRESOLV@%$NEED_LRESOLV%g
  500. s%@LIBS@%$LIBS%g
  501. s%@srcdir@%$srcdir%g
  502. s%@DEFS@%-DHAVE_CONFIG_H%" $top_srcdir/${file}.in >> $file
  503. fi; done
  504.  
  505. echo creating config.h
  506. # These sed commands are put into SEDDEFS when defining a macro.
  507. # They are broken into pieces to make the sed script easier to manage.
  508. # They are passed to sed as "A NAME B NAME C VALUE D", where NAME
  509. # is the cpp macro being defined and VALUE is the value it is being given.
  510. # Each defining turns into a single global substitution command.
  511. #
  512. # SEDd sets the value in "#define NAME VALUE" lines.
  513. SEDdA='s@^\([     ]*\)#\([     ]*define[     ][     ]*\)'
  514. SEDdB='\([     ][     ]*\)[^     ]*@\1#\2'
  515. SEDdC='\3'
  516. SEDdD='@g'
  517. # SEDu turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
  518. SEDuA='s@^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  519. SEDuB='\([     ]\)@\1#\2define\3'
  520. SEDuC=' '
  521. SEDuD='\4@g'
  522. # SEDe turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
  523. SEDeA='s@^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  524. SEDeB='$@\1#\2define\3'
  525. SEDeC=' '
  526. SEDeD='@g'
  527. rm -f conftest.sed
  528. cat > conftest.sed <<CONFEOF
  529. EOF
  530. # Turn off quoting long enough to insert the sed commands.
  531. cat >> config.status <<EOF
  532. $SEDDEFS
  533. EOF
  534. cat >> config.status <<\EOF
  535. CONFEOF
  536. rm -f conftest.h
  537. # Break up the sed commands because old seds have small limits.
  538. cp $top_srcdir/config.h.in conftest.h1
  539. while :
  540. do
  541.   lines=`grep -c . conftest.sed`
  542.   if test -z "$lines" || test "$lines" -eq 0; then break; fi
  543.   rm -f conftest.s1 conftest.s2 conftest.h2
  544.   sed 40q conftest.sed > conftest.s1 # Like head -40.
  545.   sed 1,40d conftest.sed > conftest.s2 # Like tail +41.
  546.   sed -f conftest.s1 < conftest.h1 > conftest.h2
  547.   rm -f conftest.s1 conftest.h1 conftest.sed
  548.   mv conftest.h2 conftest.h1
  549.   mv conftest.s2 conftest.sed
  550. done
  551. rm -f conftest.sed conftest.h
  552. echo "/* config.h.  Generated automatically by configure.  */" > conftest.h
  553. cat conftest.h1 >> conftest.h
  554. rm -f conftest.h1
  555. if cmp -s config.h conftest.h 2>/dev/null; then
  556.   # The file exists and we would not be changing it.
  557.   rm -f conftest.h
  558. else
  559.   rm -f config.h
  560.   mv conftest.h config.h
  561. fi
  562.  
  563. EOF
  564. chmod +x config.status
  565. test -n "$no_create" || ./config.status
  566.  
  567.