home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR40 / GNUZIP_.ZIP / CONFIGUR < prev    next >
Text File  |  1993-03-28  |  15KB  |  598 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=gzip.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. if test -z "$CC"; then
  115.   echo checking for gcc
  116.   saveifs="$IFS"; IFS="${IFS}:"
  117.   for dir in $PATH; do
  118.     test -z "$dir" && dir=.
  119.     if test -f $dir/gcc; then
  120.       CC="gcc"
  121.       break
  122.     fi
  123.   done
  124.   IFS="$saveifs"
  125. fi
  126. test -z "$CC" && CC="cc"
  127.  
  128. # Find out if we are using GNU C, under whatever name.
  129. cat > conftest.c <<EOF
  130. #ifdef __GNUC__
  131.   yes
  132. #endif
  133. EOF
  134. ${CC-cc} -E conftest.c > conftest.out 2>&1
  135. if egrep yes conftest.out >/dev/null 2>&1; then
  136.   GCC=1 # For later tests.
  137.   CC="$CC -O"
  138. fi
  139. rm -f conftest*
  140.  
  141. echo checking for underline in external names
  142. test -z "$CPP" -a -f /lib/cpp && CPP=/lib/cpp
  143. test -z "$CPP" && CPP="$CC -E"
  144. cat > conftest.c <<EOF
  145. int foo() {return 0;}
  146. EOF
  147. $CC -c conftest.c > /dev/null 2>&1
  148. if nm conftest.o | grep _foo > /dev/null 2>&1 ; then
  149.   :
  150. else
  151.   CPP="${CPP} -DNO_UNDERLINE"
  152. fi
  153. echo checking for 386 assembler
  154. rm -f _match.o conftest.co
  155. $CPP $srcdir/match.S > _match.s
  156. if grep error < _match.s > /dev/null; then
  157.   OBJA=""
  158. elif $CC -c _match.s >/dev/null 2>&1 && test -f _match.o; then
  159.   DEFS="${DEFS} -DASMV"
  160.   OBJA=match.o
  161. fi
  162. rm -f _match.s _match.o
  163. # Make sure to not get the incompatible SysV /etc/install and
  164. # /usr/sbin/install, which might be in PATH before a BSD-like install,
  165. # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  166. # or the AFS install, which mishandles nonexistent args.  (Sigh.)
  167. if test -z "$INSTALL"; then
  168.   echo checking for install
  169.   saveifs="$IFS"; IFS="${IFS}:"
  170.   for dir in $PATH; do
  171.     test -z "$dir" && dir=.
  172.     case $dir in
  173.     /etc|/usr/sbin|/usr/etc|/usr/afsws/bin) ;;
  174.     *)
  175.       if test -f $dir/install; then
  176.     if grep dspmsg $dir/install >/dev/null 2>&1; then
  177.       : # AIX
  178.     else
  179.       INSTALL="$dir/install -c"
  180.       INSTALL_PROGRAM='$(INSTALL)'
  181.       INSTALL_DATA='$(INSTALL) -m 644'
  182.       break
  183.     fi
  184.       fi
  185.       ;;
  186.     esac
  187.   done
  188.   IFS="$saveifs"
  189. fi
  190. INSTALL=${INSTALL-cp}
  191. INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}
  192. INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}
  193.  
  194. echo checking for AIX
  195. echo checking how to run the C preprocessor
  196. if test -z "$CPP"; then
  197.   CPP='${CC-cc} -E'
  198.   cat > conftest.c <<EOF
  199. #include <stdio.h>
  200. EOF
  201. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  202. if test -z "$err"; then
  203.   :
  204. else
  205.   CPP=/lib/cpp
  206. fi
  207. rm -f conftest*
  208. fi
  209.  
  210. cat > conftest.c <<EOF
  211. #ifdef _AIX
  212.   yes
  213. #endif
  214.  
  215. EOF
  216. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  217. if egrep "yes" conftest.out >/dev/null 2>&1; then
  218.   DEFS="$DEFS -D_ALL_SOURCE=1"
  219. fi
  220. rm -f conftest*
  221.  
  222.  
  223. echo checking for minix/config.h
  224. cat > conftest.c <<EOF
  225. #include <minix/config.h>
  226. EOF
  227. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  228. if test -z "$err"; then
  229.   MINIX=1
  230. fi
  231. rm -f conftest*
  232.  
  233. # The Minix shell can't assign to the same variable on the same line!
  234. if test -n "$MINIX"; then
  235.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  236.   DEFS="$DEFS -D_POSIX_1_SOURCE=2"
  237.   DEFS="$DEFS -D_MINIX=1"
  238. fi
  239.  
  240. echo checking for POSIXized ISC
  241. if test -d /etc/conf/kconfig.d &&
  242.   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  243. then
  244.   ISC=1 # If later tests want to check for ISC.
  245.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  246.   if test -n "$GCC"; then
  247.     CC="$CC -posix"
  248.   else
  249.     CC="$CC -Xp"
  250.   fi
  251. fi
  252.  
  253. echo checking for DYNIX/ptx libseq
  254. cat > conftest.c <<EOF
  255. #if defined(_SEQUENT_)
  256.   yes
  257. #endif
  258.  
  259. EOF
  260. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  261. if egrep "yes" conftest.out >/dev/null 2>&1; then
  262.   SEQUENT=1
  263. fi
  264. rm -f conftest*
  265.  
  266. test -n "$SEQUENT" && test -f /usr/lib/libseq.a &&
  267.   LIBS="$LIBS -lseq"
  268.  
  269. echo checking for ANSI C header files
  270. cat > conftest.c <<EOF
  271. #include <stdlib.h>
  272. #include <stdarg.h>
  273. #include <string.h>
  274. #include <float.h>
  275. EOF
  276. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  277. if test -z "$err"; then
  278.   # SunOS string.h does not declare mem*, contrary to ANSI.
  279. echo '#include <string.h>' > conftest.c
  280. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  281. if egrep "memchr" conftest.out >/dev/null 2>&1; then
  282.   # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  283. cat > conftest.c <<EOF
  284. #include <ctype.h>
  285. #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  286. #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  287. #define XOR(e,f) (((e) && !(f)) || (!(e) && (f)))
  288. int main () { int i; for (i = 0; i < 256; i++)
  289. if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
  290. exit (0); }
  291.  
  292. EOF
  293. eval $compile
  294. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  295.   DEFS="$DEFS -DSTDC_HEADERS=1"
  296. fi
  297. rm -f conftest*
  298. fi
  299. rm -f conftest*
  300.  
  301. fi
  302. rm -f conftest*
  303.  
  304. for hdr in unistd.h stdlib.h fcntl.h string.h memory.h utime.h sys/utime.h
  305. do
  306. trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  307. echo checking for ${hdr}
  308. cat > conftest.c <<EOF
  309. #include <${hdr}>
  310. EOF
  311. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  312. if test -z "$err"; then
  313.   DEFS="$DEFS -D${trhdr}=1"
  314. fi
  315. rm -f conftest*
  316. done
  317.  
  318. echo checking for directory library header
  319. echo checking for dirent.h
  320. cat > conftest.c <<EOF
  321. #include <dirent.h>
  322. EOF
  323. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  324. if test -z "$err"; then
  325.   DEFS="$DEFS -DDIRENT=1" dirheader=dirent.h
  326. fi
  327. rm -f conftest*
  328.  
  329. if test -z "$dirheader"; then
  330. echo checking for sys/ndir.h
  331. cat > conftest.c <<EOF
  332. #include <sys/ndir.h>
  333. EOF
  334. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  335. if test -z "$err"; then
  336.   DEFS="$DEFS -DSYSNDIR=1" dirheader=sys/ndir.h
  337. fi
  338. rm -f conftest*
  339.  
  340. fi
  341. if test -z "$dirheader"; then
  342. echo checking for sys/dir.h
  343. cat > conftest.c <<EOF
  344. #include <sys/dir.h>
  345. EOF
  346. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  347. if test -z "$err"; then
  348.   DEFS="$DEFS -DSYSDIR=1" dirheader=sys/dir.h
  349. fi
  350. rm -f conftest*
  351.  
  352. fi
  353. if test -z "$dirheader"; then
  354. echo checking for ndir.h
  355. cat > conftest.c <<EOF
  356. #include <ndir.h>
  357. EOF
  358. err=`eval "($CPP $DEFS conftest.c >/dev/null) 2>&1"`
  359. if test -z "$err"; then
  360.   DEFS="$DEFS -DNDIR=1" dirheader=ndir.h
  361. fi
  362. rm -f conftest*
  363.  
  364. fi
  365.  
  366. echo checking for closedir return value
  367. cat > conftest.c <<EOF
  368. #include <sys/types.h>
  369. #include <$dirheader>
  370. int closedir(); main() { exit(0); }
  371. EOF
  372. eval $compile
  373. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  374.   :
  375. else
  376.   DEFS="$DEFS -DVOID_CLOSEDIR=1"
  377. fi
  378. rm -f conftest*
  379.  
  380. echo checking for Xenix
  381. cat > conftest.c <<EOF
  382. #if defined(M_XENIX) && !defined(M_UNIX)
  383.   yes
  384. #endif
  385.  
  386. EOF
  387. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  388. if egrep "yes" conftest.out >/dev/null 2>&1; then
  389.   XENIX=1
  390. fi
  391. rm -f conftest*
  392.  
  393. if test -n "$XENIX"; then
  394.   DEFS="$DEFS -DVOID_CLOSEDIR=1"
  395.   LIBS="$LIBS -lx"
  396.   case "$DEFS" in
  397.   *SYSNDIR*) ;;
  398.   *) LIBS="-ldir $LIBS" ;; # Make sure -ldir precedes any -lx.
  399.   esac
  400. fi
  401.  
  402. # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  403. # for constant arguments.  Useless!
  404. echo checking for working alloca.h
  405. cat > conftest.c <<EOF
  406. #include <alloca.h>
  407. main() { exit(0); } 
  408. t() { char *p = alloca(2 * sizeof(int)); }
  409. EOF
  410. if eval $compile; then
  411.   DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  412. fi
  413. rm -f conftest*
  414.  
  415. decl="#ifdef __GNUC__
  416. #define alloca __builtin_alloca
  417. #else
  418. #if HAVE_ALLOCA_H
  419. #include <alloca.h>
  420. #else
  421. #ifdef _AIX
  422.  #pragma alloca
  423. #else
  424. char *alloca ();
  425. #endif
  426. #endif
  427. #endif
  428. "
  429. echo checking for alloca
  430. cat > conftest.c <<EOF
  431. $decl
  432. main() { exit(0); } 
  433. t() { char *p = (char *) alloca(1); }
  434. EOF
  435. if eval $compile; then
  436.   :
  437. else
  438.   alloca_missing=1
  439. fi
  440. rm -f conftest*
  441.  
  442. if test -n "$alloca_missing"; then
  443.   # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  444.   # that cause trouble.  Some versions do not even contain alloca or
  445.   # contain a buggy version.  If you still want to use their alloca,
  446.   # use ar to extract alloca.o from them instead of compiling alloca.c.
  447.   ALLOCA=alloca.o
  448. fi
  449.  
  450. echo checking for return type of signal handlers
  451. cat > conftest.c <<EOF
  452. #include <sys/types.h>
  453. #include <signal.h>
  454. #ifdef signal
  455. #undef signal
  456. #endif
  457. extern void (*signal ()) ();
  458. main() { exit(0); } 
  459. t() { int i; }
  460. EOF
  461. if eval $compile; then
  462.   DEFS="$DEFS -DRETSIGTYPE=void"
  463. else
  464.   DEFS="$DEFS -DRETSIGTYPE=int"
  465. fi
  466. rm -f conftest*
  467.  
  468.  
  469. echo "checking for #! kernel hack"
  470. cat <<'__EOF__' > conftest.csh
  471. #!/bin/csh -f
  472. setenv SHELL /bin/csh
  473. # Avoid tcsh bug 'Bad Hertz Value':
  474. setenv HZ 60
  475. # Make sure foo doesn't get exported into the environment
  476. # Astoundingly, some versions of csh don't have unsetenv.
  477. unsetenv foo >& /dev/null
  478. unset foo
  479. set output="`./conftest.sh`"
  480. if ( "$output" == "foo=bar" ) then
  481.    exit 0
  482. endif
  483. exit 1
  484. __EOF__
  485. cat <<'__EOF__' > conftest.sh
  486. #!/bin/sh
  487. # If this is really run with sh, then 1st positional arg will be "foo=bar".
  488. # If this script was executed by csh, then a shell variable "foo" will have
  489. # the value "var".
  490. set foo=bar
  491. echo "$*"
  492. __EOF__
  493. chmod 777 conftest.csh conftest.sh
  494. (csh -f ./conftest.csh) 2> /dev/null
  495. if test $? = 0 ; then
  496.    :; SEDCMD="1d"
  497. else
  498.    :; SEDCMD=""
  499. fi
  500. rm -f conftest.csh conftest.sh
  501.  
  502. if test -z "$prefix"
  503. then
  504.   echo checking for gzip to derive installation directory prefix
  505.   saveifs="$IFS"; IFS="$IFS:"
  506.   for dir in $PATH; do
  507.     test -z "$dir" && dir=.
  508.     if test $dir != . && test -f $dir/gzip; then
  509.       # Not all systems have dirname.
  510.       prefix=`echo $dir|sed 's%/[^/][^/]*$%%'`
  511.       break
  512.     fi
  513.   done
  514.   IFS="$saveifs"
  515. fi
  516.  
  517. if test -n "$prefix"; then
  518.   test -z "$exec_prefix" && exec_prefix='${prefix}'
  519.   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  520. fi
  521. if test -n "$exec_prefix"; then
  522.   prsub="$prsub
  523. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%\
  524. exec_prefix\\1=\\2$exec_prefix%"
  525. fi
  526.  
  527. trap 'rm -f config.status; exit 1' 1 3 15
  528. echo creating config.status
  529. rm -f config.status
  530. cat > config.status <<EOF
  531. #!/bin/sh
  532. # Generated automatically by configure.
  533. # Run this file to recreate the current configuration.
  534. # This directory was configured as follows,
  535. # on host `(hostname || uname -n) 2>/dev/null`:
  536. #
  537. # $0 $*
  538.  
  539. for arg
  540. do
  541.   case "\$arg" in
  542.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  543.     exec /bin/sh $0 $* ;;
  544.     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  545.   esac
  546. done
  547.  
  548. trap 'rm -f Makefile; exit 1' 1 3 15
  549. CC='$CC'
  550. INSTALL='$INSTALL'
  551. INSTALL_PROGRAM='$INSTALL_PROGRAM'
  552. INSTALL_DATA='$INSTALL_DATA'
  553. CPP='$CPP'
  554. ALLOCA='$ALLOCA'
  555. OBJA='$OBJA'
  556. SEDCMD='$SEDCMD'
  557. LIBS='$LIBS'
  558. srcdir='$srcdir'
  559. DEFS='$DEFS'
  560. prefix='$prefix'
  561. exec_prefix='$exec_prefix'
  562. prsub='$prsub'
  563. EOF
  564. cat >> config.status <<\EOF
  565.  
  566. top_srcdir=$srcdir
  567. for file in .. Makefile; do if [ "x$file" != "x.." ]; then
  568.   srcdir=$top_srcdir
  569.   # Remove last slash and all that follows it.  Not all systems have dirname.
  570.   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  571.   if test "$dir" != "$file"; then
  572.     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  573.     test ! -d $dir && mkdir $dir
  574.   fi
  575.   echo creating $file
  576.   rm -f $file
  577.   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  578.   sed -e "
  579. $prsub
  580. s%@CC@%$CC%g
  581. s%@INSTALL@%$INSTALL%g
  582. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  583. s%@INSTALL_DATA@%$INSTALL_DATA%g
  584. s%@CPP@%$CPP%g
  585. s%@ALLOCA@%$ALLOCA%g
  586. s%@OBJA@%$OBJA%g
  587. s%@SEDCMD@%$SEDCMD%g
  588. s%@LIBS@%$LIBS%g
  589. s%@srcdir@%$srcdir%g
  590. s%@DEFS@%$DEFS%
  591. " $top_srcdir/${file}.in >> $file
  592. fi; done
  593.  
  594. EOF
  595. chmod +x config.status
  596. test -n "$no_create" || ./config.status
  597.  
  598.