home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / dc-0.2.diffs < prev    next >
Encoding:
Text File  |  1995-01-21  |  30.6 KB  |  913 lines

  1. diff -rc --new-file dc-0.2/INSTALL /gnu/src/amiga/dc-0.2/INSTALL
  2. *** dc-0.2/INSTALL    Sat Apr 17 20:25:55 1993
  3. --- /gnu/src/amiga/dc-0.2/INSTALL    Wed Feb 23 14:26:04 1994
  4. ***************
  5. *** 33,40 ****
  6.   DIR is the directory that contains the source code.
  7.   
  8.   By default, `make install' will install the package's files in
  9. ! /usr/local/bin, /usr/local/lib, /usr/local/man, etc.  You can specify
  10. ! an installation prefix other than /usr/local by giving `configure' the
  11.   option `--prefix=PATH'.  Alternately, you can do so by giving a value
  12.   for the `prefix' variable when you run `make', e.g.,
  13.       make prefix=/usr/gnu
  14. --- 33,40 ----
  15.   DIR is the directory that contains the source code.
  16.   
  17.   By default, `make install' will install the package's files in
  18. ! /gnu/bin, /gnu/lib, /gnu/man, etc.  You can specify
  19. ! an installation prefix other than /gnu by giving `configure' the
  20.   option `--prefix=PATH'.  Alternately, you can do so by giving a value
  21.   for the `prefix' variable when you run `make', e.g.,
  22.       make prefix=/usr/gnu
  23. diff -rc --new-file dc-0.2/Makefile.in /gnu/src/amiga/dc-0.2/Makefile.in
  24. *** dc-0.2/Makefile.in    Thu May 20 07:23:32 1993
  25. --- /gnu/src/amiga/dc-0.2/Makefile.in    Wed Feb 23 14:29:01 1994
  26. ***************
  27. *** 29,38 ****
  28.   DEFS = @DEFS@
  29.   LIBS = @LIBS@
  30.   
  31. ! CFLAGS = -g
  32. ! LDFLAGS = -g
  33.   
  34. ! prefix = /usr/local
  35.   exec_prefix = $(prefix)
  36.   
  37.   bindir = $(exec_prefix)/bin
  38. --- 29,38 ----
  39.   DEFS = @DEFS@
  40.   LIBS = @LIBS@
  41.   
  42. ! CFLAGS = -O2
  43. ! LDFLAGS =
  44.   
  45. ! prefix = /gnu
  46.   exec_prefix = $(prefix)
  47.   
  48.   bindir = $(exec_prefix)/bin
  49. diff -rc --new-file dc-0.2/Product-Info /gnu/src/amiga/dc-0.2/Product-Info
  50. *** dc-0.2/Product-Info    Thu Jan  1 00:00:00 1970
  51. --- /gnu/src/amiga/dc-0.2/Product-Info    Mon Jul 11 23:19:55 1994
  52. ***************
  53. *** 0 ****
  54. --- 1,25 ----
  55. + .name
  56. + dc
  57. + .fullname
  58. + GNU reverse-polish desk calculator
  59. + .type
  60. + Programmer Tool
  61. + .short
  62. + GNU reverse-polish (RPN) desk calculator
  63. + .description
  64. + DC is a reverse-polish desk calculator which supports unlimited
  65. + precision arithmetic.  It also allows you to define and call macros.
  66. + Normally DC reads from the standard input; if any command arguments
  67. + are given to it, they are filenames, and DC reads and executes the
  68. + contents of the files before reading from standard input.  All output
  69. + is to standard output.
  70. + .version
  71. + 0.2
  72. + .author
  73. + Free Software Foundation
  74. + .requirements
  75. + Binary requires ixemul.library.
  76. + .distribution
  77. + GNU Public License
  78. + .described-by
  79. + Fred Fish (fnf@amigalib.com)
  80. diff -rc --new-file dc-0.2/configure /gnu/src/amiga/dc-0.2/configure
  81. *** dc-0.2/configure    Tue Apr 20 21:54:34 1993
  82. --- /gnu/src/amiga/dc-0.2/configure    Mon Apr 25 11:01:07 1994
  83. ***************
  84. *** 1,132 ****
  85.   #!/bin/sh
  86.   # Guess values for system-dependent variables and create Makefiles.
  87. ! # Generated automatically using autoconf.
  88. ! # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  89.   
  90. ! # This program is free software; you can redistribute it and/or modify
  91. ! # it under the terms of the GNU General Public License as published by
  92. ! # the Free Software Foundation; either version 2, or (at your option)
  93.   # any later version.
  94.   
  95. ! # This program is distributed in the hope that it will be useful,
  96. ! # but WITHOUT ANY WARRANTY; without even the implied warranty of
  97. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  98. ! # GNU General Public License for more details.
  99.   
  100.   # You should have received a copy of the GNU General Public License
  101.   # along with this program; if not, write to the Free Software
  102.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  103.   
  104. ! # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]
  105. ! #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]
  106. ! # Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and
  107. ! # --with-PACKAGE unless this script has special code to handle it.
  108.   
  109.   
  110. ! for arg
  111.   do
  112. -   # Handle --exec-prefix with a space before the argument.
  113. -   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  114. -   # Handle --host with a space before the argument.
  115. -   elif test x$next_host = xyes; then next_host=
  116. -   # Handle --prefix with a space before the argument.
  117. -   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  118. -   # Handle --srcdir with a space before the argument.
  119. -   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  120. -   else
  121. -     case $arg in
  122. -      # For backward compatibility, also recognize exact --exec_prefix.
  123. -      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  124. -     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  125. -      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  126. -     next_exec_prefix=yes ;;
  127. -      -gas | --gas | --ga | --g) ;;
  128. -      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  129. -      -host | --host | --hos | --ho | --h)
  130. -     next_host=yes ;;
  131. -      -nfp | --nfp | --nf) ;;
  132. -      -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)
  133. -         no_create=1 ;;
  134. -      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  135. -     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  136. -      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  137. -     next_prefix=yes ;;
  138. -      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  139. -     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  140. -      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  141. -     next_srcdir=yes ;;
  142. -      -with-* | --with-*)
  143. -        package=`echo $arg|sed 's/-*with-//'`
  144. -        # Delete all the valid chars; see if any are left.
  145. -        if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then
  146. -          echo "configure: $package: invalid package name" >&2; exit 1
  147. -        fi
  148. -        eval "with_`echo $package|sed s/-/_/g`=1" ;;
  149.   
  150. !      -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
  151. !        verbose=yes ;;
  152.   
  153. !      *) ;;
  154.       esac
  155. !   fi
  156.   done
  157.   
  158. ! trap 'rm -f conftest* core; exit 1' 1 3 15
  159.   
  160. ! rm -f conftest*
  161. ! compile='${CC-cc} $CFLAGS $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  162.   
  163.   # A filename unique to this package, relative to the directory that
  164.   # configure is in, which we can look for to find out if srcdir is correct.
  165. ! unique_file=dc.texinfo
  166.   
  167.   # Find the source files, if location was not specified.
  168.   if test -z "$srcdir"; then
  169. !   srcdirdefaulted=yes
  170.     # Try the directory containing this script, then `..'.
  171. !   prog=$0
  172. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  173. !   test "X$confdir" = "X$prog" && confdir=.
  174. !   srcdir=$confdir
  175. !   if test ! -r $srcdir/$unique_file; then
  176.       srcdir=..
  177.     fi
  178.   fi
  179. ! if test ! -r $srcdir/$unique_file; then
  180. !   if test x$srcdirdefaulted = xyes; then
  181. !     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  182.     else
  183. !     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  184.     fi
  185. -   exit 1
  186.   fi
  187. ! # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  188. ! # But we can't avoid them for `..', to make subdirectories work.
  189. ! case $srcdir in
  190. !   .|/*|~*) ;;
  191. !   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  192. ! esac
  193.   
  194.   if test -z "$CC"; then
  195. !   echo checking for gcc
  196. !   saveifs="$IFS"; IFS="${IFS}:"
  197. !   for dir in $PATH; do
  198. !     test -z "$dir" && dir=.
  199. !     if test -f $dir/gcc; then
  200.         CC="gcc"
  201.         break
  202.       fi
  203.     done
  204. !   IFS="$saveifs"
  205.   fi
  206.   test -z "$CC" && CC="cc"
  207.   
  208.   # Find out if we are using GNU C, under whatever name.
  209.   cat > conftest.c <<EOF
  210. --- 1,335 ----
  211.   #!/bin/sh
  212.   # Guess values for system-dependent variables and create Makefiles.
  213. ! # Generated automatically using autoconf version 1.9 
  214. ! # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  215.   
  216. ! # This configure script is free software; you can redistribute it and/or
  217. ! # modify it under the terms of the GNU General Public License as published
  218. ! # by the Free Software Foundation; either version 2, or (at your option)
  219.   # any later version.
  220.   
  221. ! # This script is distributed in the hope that it will be useful, but
  222. ! # WITHOUT ANY WARRANTY; without even the implied warranty of
  223. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  224. ! # Public License for more details.
  225.   
  226.   # You should have received a copy of the GNU General Public License
  227.   # along with this program; if not, write to the Free Software
  228.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  229.   
  230. ! # Save the original args to write them into config.status later.
  231. ! configure_args="$*"
  232.   
  233. + # Only options that might do something get documented.
  234. + ac_usage="Usage: configure [options] [host]
  235. + Options: [defaults in brackets after descriptions]
  236. + --build=BUILD        configure for building on BUILD [BUILD=HOST]
  237. + --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  238. + --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  239. + --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  240. + --help            print this message
  241. + --host=HOST        configure for HOST [guessed]
  242. + --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  243. + --quiet, --silent    do not print \`checking for...' messages
  244. + --srcdir=DIR        find the sources in DIR [configure dir or ..]
  245. + --target=TARGET        configure for TARGET [TARGET=HOST]
  246. + --verbose        print results of checks
  247. + --version        print the version of autoconf that created configure
  248. + --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  249. + --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  250. + --x-includes=DIR    X include files are in DIR
  251. + --x-libraries=DIR    X library files are in DIR"
  252. + # Initialize some variables set by options.
  253. + # The variables have the same names as the options, with
  254. + # dashes changed to underlines.
  255. + build=NONE
  256. + exec_prefix=
  257. + host=NONE
  258. + no_create=
  259. + nonopt=NONE
  260. + norecursion=
  261. + prefix=
  262. + program_prefix=
  263. + program_suffix=
  264. + program_transform_name=
  265. + silent=
  266. + srcdir=
  267. + target=NONE
  268. + verbose=
  269. + x_includes=
  270. + x_libraries=
  271.   
  272. ! ac_prev=
  273. ! for ac_option
  274.   do
  275.   
  276. !   # If the previous option needs an argument, assign it.
  277. !   if test -n "$ac_prev"; then
  278. !     eval "$ac_prev=\$ac_option"
  279. !     ac_prev=
  280. !     continue
  281. !   fi
  282. !   # Accept (but ignore some of) the important Cygnus configure
  283. !   # options, so we can diagnose typos.
  284.   
  285. !   case "$ac_option" in
  286. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  287. !   *) ac_optarg= ;;
  288. !   esac
  289. !   case "$ac_option" in
  290. !   -build | --build | --buil | --bui | --bu | --b)
  291. !     ac_prev=build ;;
  292. !   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  293. !     build="$ac_optarg" ;;
  294. !   -disable-* | --disable-*)
  295. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  296. !     # Reject names that aren't valid shell variable names.
  297. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  298. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  299. !     fi
  300. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  301. !     eval "enable_${ac_feature}=no" ;;
  302. !   -enable-* | --enable-*)
  303. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  304. !     # Reject names that aren't valid shell variable names.
  305. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  306. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  307. !     fi
  308. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  309. !     case "$ac_option" in
  310. !       *=*) ;;
  311. !       *) ac_optarg=yes ;;
  312.       esac
  313. !     eval "enable_${ac_feature}='$ac_optarg'" ;;
  314. !   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  315. !   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  316. !   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  317. !   | --exec | --exe | --ex)
  318. !     ac_prev=exec_prefix ;;
  319. !   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  320. !   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  321. !   | --exec=* | --exe=* | --ex=*)
  322. !     exec_prefix="$ac_optarg" ;;
  323. !   -gas | --gas | --ga | --g)
  324. !     with_gas=yes ;; # Obsolete; use --with-gas.
  325. !   -help | --help | --hel | --he)
  326. !     cat << EOF
  327. ! $ac_usage
  328. ! EOF
  329. !     exit 0 ;;
  330. !   -host | --host | --hos | --ho)
  331. !     ac_prev=host ;;
  332. !   -host=* | --host=* | --hos=* | --ho=*)
  333. !     host="$ac_optarg" ;;
  334. !   -nfp | --nfp | --nf)
  335. !     with_fp=no ;; # Obsolete; use --without-fp.
  336. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  337. !   | --no-cr | --no-c)
  338. !     no_create=yes ;;
  339. !   -norecursion | --norecursion | --norecursio | --norecursi \
  340. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  341. !     norecursion=yes ;;
  342. !   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  343. !     ac_prev=prefix ;;
  344. !   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  345. !     prefix="$ac_optarg" ;;
  346. !   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  347. !   | --program-pre | --program-pr | --program-p)
  348. !     ac_prev=program_prefix ;;
  349. !   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  350. !   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  351. !     program_prefix="$ac_optarg" ;;
  352. !   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  353. !   | --program-suf | --program-su | --program-s)
  354. !     ac_prev=program_suffix ;;
  355. !   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  356. !   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  357. !     program_suffix="$ac_optarg" ;;
  358. !   -program-transform-name | --program-transform-name \
  359. !   | --program-transform-nam | --program-transform-na \
  360. !   | --program-transform-n | --program-transform- \
  361. !   | --program-transform | --program-transfor \
  362. !   | --program-transfo | --program-transf \
  363. !   | --program-trans | --program-tran \
  364. !   | --progr-tra | --program-tr | --program-t)
  365. !     ac_prev=program_transform_name ;;
  366. !   -program-transform-name=* | --program-transform-name=* \
  367. !   | --program-transform-nam=* | --program-transform-na=* \
  368. !   | --program-transform-n=* | --program-transform-=* \
  369. !   | --program-transform=* | --program-transfor=* \
  370. !   | --program-transfo=* | --program-transf=* \
  371. !   | --program-trans=* | --program-tran=* \
  372. !   | --progr-tra=* | --program-tr=* | --program-t=*)
  373. !     program_transform_name="$ac_optarg" ;;
  374. !   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  375. !   | -silent | --silent | --silen | --sile | --sil)
  376. !     silent=yes ;;
  377. !   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  378. !     ac_prev=srcdir ;;
  379. !   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  380. !     srcdir="$ac_optarg" ;;
  381. !   -target | --target | --targe | --targ | --tar | --ta | --t)
  382. !     ac_prev=target ;;
  383. !   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  384. !     target="$ac_optarg" ;;
  385. !   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  386. !     verbose=yes ;;
  387. !   -version | --version | --versio | --versi | --vers)
  388. !     /bin/echo "configure generated by autoconf version 1.9"
  389. !     exit 0 ;;
  390. !   -with-* | --with-*)
  391. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  392. !     # Reject names that aren't valid shell variable names.
  393. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  394. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  395. !     fi
  396. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  397. !     case "$ac_option" in
  398. !       *=*) ;;
  399. !       *) ac_optarg=yes ;;
  400. !     esac
  401. !     eval "with_${ac_package}='$ac_optarg'" ;;
  402. !   -without-* | --without-*)
  403. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  404. !     # Reject names that aren't valid shell variable names.
  405. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  406. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  407. !     fi
  408. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  409. !     eval "with_${ac_package}=no" ;;
  410. !   --x) with_x=yes ;; # Obsolete; use --with-x.
  411. !   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  412. !   | --x-incl | --x-inc | --x-in | --x-i)
  413. !     ac_prev=x_includes ;;
  414. !   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  415. !   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  416. !     x_includes="$ac_optarg" ;;
  417. !   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  418. !   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  419. !     ac_prev=x_libraries ;;
  420. !   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  421. !   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  422. !     x_libraries="$ac_optarg" ;;
  423. !   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  424. !     ;;
  425. !   *) 
  426. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  427. !       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  428. !     fi
  429. !     if test "x$nonopt" != xNONE; then
  430. !       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  431. !     fi
  432. !     nonopt="$ac_option"
  433. !     ;;
  434. !   esac
  435.   done
  436.   
  437. ! if test -n "$ac_prev"; then
  438. !   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  439. ! fi
  440.   
  441. ! trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  442. ! trap 'rm -fr confdefs* $ac_clean_files' 0
  443. ! # Save the original args if we used an alternate arg parser.
  444. ! ac_configure_temp="${configure_args-$*}"
  445. ! # Strip out --no-create and --norecursion so they don't pile up.
  446. ! configure_args=
  447. ! for ac_arg in $ac_configure_temp; do
  448. !   case "$ac_arg" in
  449. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  450. !   | --no-cr | --no-c) ;;
  451. !   -norecursion | --norecursion | --norecursio | --norecursi \
  452. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
  453. !   *) configure_args="$configure_args $ac_arg" ;;
  454. !   esac
  455. ! done
  456. ! # NLS nuisances.
  457. ! # These must not be set unconditionally because not all systems understand
  458. ! # e.g. LANG=C (notably SCO).
  459. ! if test "${LC_ALL+set}" = 'set'; then LC_ALL=C; export LC_ALL; fi
  460. ! if test "${LANG+set}"   = 'set'; then LANG=C;   export LANG;   fi
  461. ! # confdefs.h avoids OS command line length limits that DEFS can exceed.
  462. ! rm -rf conftest* confdefs.h
  463. ! # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  464. ! /bin/echo > confdefs.h
  465.   
  466.   # A filename unique to this package, relative to the directory that
  467.   # configure is in, which we can look for to find out if srcdir is correct.
  468. ! ac_unique_file=dc.texinfo
  469.   
  470.   # Find the source files, if location was not specified.
  471.   if test -z "$srcdir"; then
  472. !   ac_srcdir_defaulted=yes
  473.     # Try the directory containing this script, then `..'.
  474. !   ac_prog=$0
  475. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  476. !   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  477. !   srcdir=$ac_confdir
  478. !   if test ! -r $srcdir/$ac_unique_file; then
  479.       srcdir=..
  480.     fi
  481.   fi
  482. ! if test ! -r $srcdir/$ac_unique_file; then
  483. !   if test x$ac_srcdir_defaulted = xyes; then
  484. !     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  485.     else
  486. !     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  487.     fi
  488.   fi
  489. ! ac_ext=c
  490. ! ac_cpp='${CPP} $CFLAGS'
  491. ! ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  492.   
  493.   if test -z "$CC"; then
  494. !   # Extract the first word of `gcc', so it can be a program name with args.
  495. !   set ac_dummy gcc; ac_word=$2
  496. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  497. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  498. !   for ac_dir in $PATH; do
  499. !     test -z "$ac_dir" && ac_dir=.
  500. !     if test -f $ac_dir/$ac_word; then
  501.         CC="gcc"
  502.         break
  503.       fi
  504.     done
  505. !   IFS="$ac_save_ifs"
  506.   fi
  507.   test -z "$CC" && CC="cc"
  508. + test -n "$CC" && test -n "$verbose" && /bin/echo "    setting CC to $CC"
  509.   
  510.   # Find out if we are using GNU C, under whatever name.
  511.   cat > conftest.c <<EOF
  512. ***************
  513. *** 143,222 ****
  514.   # Make sure to not get the incompatible SysV /etc/install and
  515.   # /usr/sbin/install, which might be in PATH before a BSD-like install,
  516.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  517. ! # or the AFS install, which mishandles nonexistent args.  (Sigh.)
  518. ! if test -z "$INSTALL"; then
  519. !   echo checking for install
  520. !   saveifs="$IFS"; IFS="${IFS}:"
  521. !   for dir in $PATH; do
  522. !     test -z "$dir" && dir=.
  523. !     case $dir in
  524. !     /etc|/usr/sbin|/usr/etc|/usr/afsws/bin) ;;
  525.       *)
  526. !       if test -f $dir/installbsd; then
  527. !     INSTALL="$dir/installbsd -c" # OSF1
  528. !     INSTALL_PROGRAM='$(INSTALL)'
  529. !     INSTALL_DATA='$(INSTALL) -m 644'
  530. !     break
  531. !       fi
  532. !       if test -f $dir/install; then
  533. !     if grep dspmsg $dir/install >/dev/null 2>&1; then
  534. !       : # AIX
  535. !     else
  536. !       INSTALL="$dir/install -c"
  537. !       INSTALL_PROGRAM='$(INSTALL)'
  538. !       INSTALL_DATA='$(INSTALL) -m 644'
  539. !       break
  540.       fi
  541. !       fi
  542.         ;;
  543.       esac
  544.     done
  545. !   IFS="$saveifs"
  546.   fi
  547. ! INSTALL=${INSTALL-cp}
  548. ! INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}
  549. ! INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}
  550.   
  551. ! for func in bcopy bzero
  552.   do
  553. ! trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  554. ! echo checking for ${func}
  555. ! cat > conftest.c <<EOF
  556. ! #include <stdio.h>
  557. ! int main() { exit(0); } 
  558.   int t() { 
  559. ! #ifdef __stub_${func}
  560.   choke me
  561.   #else
  562.   /* Override any gcc2 internal prototype to avoid an error.  */
  563. ! extern char ${func}(); ${func}();
  564.   #endif
  565. !  }
  566.   EOF
  567. ! if eval $compile; then
  568.     {
  569.   test -n "$verbose" && \
  570. ! echo '    defining' ${trfunc}
  571. ! DEFS="$DEFS -D${trfunc}=1"
  572.   }
  573.   
  574.   fi
  575.   rm -f conftest*
  576. - #endif
  577.   done
  578.   
  579.   if test -n "$prefix"; then
  580. !   test -z "$exec_prefix" && exec_prefix='${prefix}'
  581. !   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  582.   fi
  583.   if test -n "$exec_prefix"; then
  584. !   prsub="$prsub
  585. ! s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%\
  586. ! exec_prefix\\1=\\2$exec_prefix%"
  587.   fi
  588.   
  589. ! trap 'rm -f config.status; exit 1' 1 3 15
  590. ! echo creating config.status
  591.   rm -f config.status
  592.   cat > config.status <<EOF
  593.   #!/bin/sh
  594. --- 346,470 ----
  595.   # Make sure to not get the incompatible SysV /etc/install and
  596.   # /usr/sbin/install, which might be in PATH before a BSD-like install,
  597.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  598. ! # or the AFS install, which mishandles nonexistent args, or
  599. ! # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  600. ! # `staff', or /sbin/install on IRIX which has incompatible command-line
  601. ! # syntax.  Sigh.
  602. ! #
  603. ! #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  604. ! #     anyway.
  605. ! # This turns out not to be true, so the mere pathname isn't an indication
  606. ! # of whether the program works.  What we really need is a set of tests for
  607. ! # the install program to see if it actually works in all the required ways.
  608. ! #
  609. ! # Avoid using ./install, which might have been erroneously created
  610. ! # by make from ./install.sh.
  611. ! if test "z${INSTALL}" = "z" ; then
  612. !   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  613. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  614. !   for ac_dir in $PATH; do
  615. !     case "$ac_dir" in
  616. !     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  617.       *)
  618. !       # OSF1 and SCO ODT 3.0 have their own names for install.
  619. !       for ac_prog in installbsd scoinst install; do
  620. !         if test -f $ac_dir/$ac_prog; then
  621. !       if test $ac_prog = install &&
  622. !             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  623. !         # AIX install.  It has an incompatible calling convention.
  624. !         # OSF/1 installbsd also uses dspmsg, but is usable.
  625. !         :
  626. !       else
  627. !         INSTALL="$ac_dir/$ac_prog -c"
  628. !         INSTALL_PROGRAM='${INSTALL}'
  629. !         INSTALL_DATA='${INSTALL} -m 644'
  630. !         break 2
  631. !       fi
  632.       fi
  633. !       done
  634.         ;;
  635.       esac
  636.     done
  637. !   IFS="$ac_save_ifs"
  638.   fi
  639. ! if test -z "$INSTALL"; then
  640. !   if test -f ${srcdir}/install.sh; then
  641. !     # As a last resort, use the slow shell script.
  642. !     INSTALL='@top_srcdir@/install.sh -c'
  643. !   else
  644. !     /bin/echo "configure: warning: ${srcdir}/install.sh not found; using cp" >&2
  645. !     INSTALL=cp
  646. !   fi
  647. ! fi
  648. ! test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  649. ! # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  650. ! # It thinks the first close brace ends the variable substitution.
  651. ! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  652. ! test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  653. ! test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL}'
  654. ! test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  655.   
  656. ! for ac_func in bcopy bzero
  657.   do
  658. ! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  659. ! test -n "$silent" || /bin/echo "checking for ${ac_func}"
  660. ! cat > conftest.${ac_ext} <<EOF
  661. ! #include "confdefs.h"
  662. ! #include <ctype.h>
  663. ! int main() { return 0; }
  664.   int t() { 
  665. ! /* The GNU C library defines this for functions which it implements
  666. !     to always fail with ENOSYS.  Some functions are actually named
  667. !     something starting with __ and the normal name is an alias.  */
  668. ! #if defined (__stub_${ac_func}) || defined (__stub___${ac_func})
  669.   choke me
  670.   #else
  671.   /* Override any gcc2 internal prototype to avoid an error.  */
  672. ! extern char ${ac_func}(); ${ac_func}();
  673.   #endif
  674. ! ; return 0; }
  675.   EOF
  676. ! if eval $ac_compile; then
  677. !   rm -rf conftest*
  678.     {
  679.   test -n "$verbose" && \
  680. ! /bin/echo "    defining ${ac_tr_func}"
  681. ! /bin/echo "#define" ${ac_tr_func} "1" >> confdefs.h
  682. ! DEFS="$DEFS -D${ac_tr_func}=1"
  683.   }
  684.   
  685.   fi
  686.   rm -f conftest*
  687.   done
  688.   
  689. + # Set default prefixes.
  690.   if test -n "$prefix"; then
  691. !   test -z "$exec_prefix" && exec_prefix='${prefix}' # Let make expand it.
  692. !   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  693.   fi
  694.   if test -n "$exec_prefix"; then
  695. !   ac_prsub="$ac_prsub
  696. ! s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  697. ! fi
  698. ! # Any assignment to VPATH causes Sun make to only execute
  699. ! # the first set of double-colon rules, so remove it if not needed.
  700. ! # If there is a colon in the path, we need to keep it.
  701. ! if test "x$srcdir" = x.; then
  702. !   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  703.   fi
  704.   
  705. ! # Quote sed substitution magic chars in DEFS.
  706. ! cat >conftest.def <<EOF
  707. ! $DEFS
  708. ! EOF
  709. ! ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  710. ! DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  711. ! rm -f conftest.def
  712. ! # Substitute for predefined variables.
  713. ! trap 'rm -f config.status; exit 1' 1 2 15
  714. ! /bin/echo creating config.status
  715.   rm -f config.status
  716.   cat > config.status <<EOF
  717.   #!/bin/sh
  718. ***************
  719. *** 225,281 ****
  720.   # This directory was configured as follows,
  721.   # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  722.   #
  723. ! # $0 $*
  724.   
  725. ! for arg
  726.   do
  727. !   case "\$arg" in
  728. !     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  729. !     exec /bin/sh $0 $* ;;
  730. !     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  731.     esac
  732.   done
  733.   
  734. ! trap 'rm -f Makefile; exit 1' 1 3 15
  735.   CC='$CC'
  736.   INSTALL='$INSTALL'
  737.   INSTALL_PROGRAM='$INSTALL_PROGRAM'
  738.   INSTALL_DATA='$INSTALL_DATA'
  739.   LIBS='$LIBS'
  740.   srcdir='$srcdir'
  741. ! DEFS='$DEFS'
  742.   prefix='$prefix'
  743.   exec_prefix='$exec_prefix'
  744. ! prsub='$prsub'
  745.   EOF
  746.   cat >> config.status <<\EOF
  747.   
  748. ! top_srcdir=$srcdir
  749. ! for file in .. Makefile; do if [ "x$file" != "x.." ]; then
  750. !   srcdir=$top_srcdir
  751.     # Remove last slash and all that follows it.  Not all systems have dirname.
  752. !   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  753. !   if test "$dir" != "$file"; then
  754. !     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  755. !     test ! -d $dir && mkdir $dir
  756.     fi
  757. !   echo creating $file
  758. !   rm -f $file
  759. !   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  760.     sed -e "
  761. ! $prsub
  762.   s%@CC@%$CC%g
  763.   s%@INSTALL@%$INSTALL%g
  764.   s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  765.   s%@INSTALL_DATA@%$INSTALL_DATA%g
  766.   s%@LIBS@%$LIBS%g
  767.   s%@srcdir@%$srcdir%g
  768.   s%@DEFS@%$DEFS%
  769. ! " $top_srcdir/${file}.in >> $file
  770.   fi; done
  771.   
  772.   exit 0
  773.   EOF
  774.   chmod +x config.status
  775. ! test -n "$no_create" || ./config.status
  776.   
  777. --- 473,564 ----
  778.   # This directory was configured as follows,
  779.   # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  780.   #
  781. ! # $0 $configure_args
  782.   
  783. ! ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  784. ! for ac_option
  785.   do
  786. !   case "\$ac_option" in
  787. !   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  788. !     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  789. !     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  790. !   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  791. !     /bin/echo "config.status generated by autoconf version 1.9"
  792. !     exit 0 ;;
  793. !   -help | --help | --hel | --he | --h)
  794. !     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  795. !   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  796.     esac
  797.   done
  798.   
  799. ! trap 'rm -f Makefile; exit 1' 1 2 15
  800.   CC='$CC'
  801.   INSTALL='$INSTALL'
  802.   INSTALL_PROGRAM='$INSTALL_PROGRAM'
  803.   INSTALL_DATA='$INSTALL_DATA'
  804.   LIBS='$LIBS'
  805.   srcdir='$srcdir'
  806. ! top_srcdir='$top_srcdir'
  807.   prefix='$prefix'
  808.   exec_prefix='$exec_prefix'
  809. ! DEFS='$DEFS'
  810. ! ac_prsub='$ac_prsub'
  811. ! ac_vpsub='$ac_vpsub'
  812. ! extrasub='$extrasub'
  813.   EOF
  814.   cat >> config.status <<\EOF
  815.   
  816. ! ac_given_srcdir=$srcdir
  817. ! CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  818. ! for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  819.     # Remove last slash and all that follows it.  Not all systems have dirname.
  820. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  821. !   if test "$ac_dir" != "$ac_file"; then
  822. !     # The file is in a subdirectory.
  823. !     test ! -d "$ac_dir" && mkdir "$ac_dir"
  824. !     ac_dir_suffix="/$ac_dir"
  825. !   else
  826. !     ac_dir_suffix=
  827.     fi
  828. !   # A "../" for each directory in $ac_dir_suffix.
  829. !   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  830. !   case "$ac_given_srcdir" in
  831. !   .)  srcdir=.; top_srcdir="$ac_dots." ;;
  832. !   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  833. !   *) # Relative path.
  834. !     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  835. !     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  836. !   esac
  837. !   /bin/echo creating "$ac_file"
  838. !   rm -f "$ac_file"
  839. !   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  840. !   case "$ac_file" in
  841. !     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  842. !     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  843. !   esac
  844.     sed -e "
  845. ! $ac_prsub
  846. ! $ac_vpsub
  847. ! $extrasub
  848.   s%@CC@%$CC%g
  849.   s%@INSTALL@%$INSTALL%g
  850.   s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  851.   s%@INSTALL_DATA@%$INSTALL_DATA%g
  852.   s%@LIBS@%$LIBS%g
  853.   s%@srcdir@%$srcdir%g
  854. + s%@top_srcdir@%$top_srcdir%g
  855. + s%@prefix@%$prefix%g
  856. + s%@exec_prefix@%$exec_prefix%g
  857.   s%@DEFS@%$DEFS%
  858. ! " $ac_given_srcdir/${ac_file}.in >> $ac_file
  859.   fi; done
  860.   
  861.   exit 0
  862.   EOF
  863.   chmod +x config.status
  864. ! test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} config.status
  865.   
  866.