home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / gs-fonts-2.6.1.diffs < prev    next >
Encoding:
Text File  |  1995-01-21  |  21.4 KB  |  611 lines

  1. diff -rc --new-file gs-fonts-2.6.1/Makefile.in /gnu/src/amiga/gs-fonts-2.6.1/Makefile.in
  2. *** gs-fonts-2.6.1/Makefile.in    Thu Jan  1 00:00:00 1970
  3. --- /gnu/src/amiga/gs-fonts-2.6.1/Makefile.in    Tue Aug 23 15:33:53 1994
  4. ***************
  5. *** 0 ****
  6. --- 1,43 ----
  7. + # Ghostscript fonts Makefile.
  8. + #### Start of system configuration section. ####
  9. + VPATH = @srcdir@
  10. + srcdir = @srcdir@
  11. + # Common prefix for machine-independent installed files.
  12. + prefix = /gnu
  13. + # Common prefix for machine-dependent installed files.
  14. + exec_prefix = $(prefix)
  15. + # Directory to install libraries in.
  16. + libdir = $(exec_prefix)/lib
  17. + # Program to install data like man pages.
  18. + INSTALL_DATA = @INSTALL_DATA@
  19. + # Generic install program.
  20. + INSTALL = @INSTALL@
  21. + #### End of system configuration section. ####
  22. + # Define the default directories for the runtime
  23. + # initialization and font files.  Separate multiple directories with a ','.
  24. + gsdatadir = $(libdir)/ghostscript
  25. + gsfontsdir = $(gsdatadir)/fonts
  26. + # Installation
  27. + all:
  28. + clean:
  29. + clobber:
  30. + install:
  31. +     if [ -d $(libdir) ]; then true; else mkdir $(libdir); fi
  32. +     if [ -d $(gsfontsdir) ]; then true; else mkdir $(gsfontsdir); fi
  33. +     for f in `(cd $(srcdir)/fonts ; find . -type f -print)` ; do $(INSTALL_DATA) $(srcdir)/fonts/$$f $(gsfontsdir)/$$f ; done
  34. + Makefile:    config.status $(srcdir)/Makefile.in
  35. +         $(SHELL) config.status
  36. diff -rc --new-file gs-fonts-2.6.1/Product-Info /gnu/src/amiga/gs-fonts-2.6.1/Product-Info
  37. *** gs-fonts-2.6.1/Product-Info    Thu Jan  1 00:00:00 1970
  38. --- /gnu/src/amiga/gs-fonts-2.6.1/Product-Info    Tue Jul 12 17:25:24 1994
  39. ***************
  40. *** 0 ****
  41. --- 1,22 ----
  42. + .name
  43. + ghostscript-fonts
  44. + .type
  45. + Miscellaneous
  46. + .short
  47. + GNU postscript interpreter fonts
  48. + .description
  49. + Ghostscript is the name of a set of software that provides an
  50. + interpreter for the PostScript (TM) language, and a set of C
  51. + procedures (the Ghostscript library) that implement the graphics
  52. + capabilities that appear as primitive operations in the PostScript
  53. + language.
  54. + .version
  55. + 2.6.1
  56. + .author
  57. + L. Peter Deutsch
  58. + .distribution
  59. + Ghostscript General Public License
  60. + .email
  61. + ghost@aladdin.com
  62. + .described-by
  63. + Fred Fish (fnf@amigalib.com)
  64. diff -rc --new-file gs-fonts-2.6.1/configure /gnu/src/amiga/gs-fonts-2.6.1/configure
  65. *** gs-fonts-2.6.1/configure    Thu Jan  1 00:00:00 1970
  66. --- /gnu/src/amiga/gs-fonts-2.6.1/configure    Sat Jul  9 12:51:47 1994
  67. ***************
  68. *** 0 ****
  69. --- 1,515 ----
  70. + #!/bin/sh
  71. + # Guess values for system-dependent variables and create Makefiles.
  72. + # Generated automatically using autoconf version 1.11 
  73. + # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  74. + # This configure script is free software; you can redistribute it and/or
  75. + # modify it under the terms of the GNU General Public License as published
  76. + # by the Free Software Foundation; either version 2, or (at your option)
  77. + # any later version.
  78. + # This script is distributed in the hope that it will be useful, but
  79. + # WITHOUT ANY WARRANTY; without even the implied warranty of
  80. + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  81. + # Public License for more details.
  82. + # You should have received a copy of the GNU General Public License
  83. + # along with this program; if not, write to the Free Software
  84. + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  85. + # Save the original args to write them into config.status later.
  86. + configure_args="$*"
  87. + # Only options that might do something get documented.
  88. + ac_usage="Usage: configure [options] [host]
  89. + Options: [defaults in brackets after descriptions]
  90. + --build=BUILD        configure for building on BUILD [BUILD=HOST]
  91. + --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  92. + --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  93. + --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  94. + --help            print this message
  95. + --host=HOST        configure for HOST [guessed]
  96. + --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  97. + --quiet, --silent    do not print \`checking for...' messages
  98. + --srcdir=DIR        find the sources in DIR [configure dir or ..]
  99. + --target=TARGET        configure for TARGET [TARGET=HOST]
  100. + --verbose        print results of checks
  101. + --version        print the version of autoconf that created configure
  102. + --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  103. + --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  104. + --x-includes=DIR    X include files are in DIR
  105. + --x-libraries=DIR    X library files are in DIR"
  106. + # Initialize some variables set by options.
  107. + # The variables have the same names as the options, with
  108. + # dashes changed to underlines.
  109. + build=NONE
  110. + exec_prefix=
  111. + host=NONE
  112. + no_create=
  113. + nonopt=NONE
  114. + norecursion=
  115. + prefix=
  116. + program_prefix=
  117. + program_suffix=
  118. + program_transform_name=
  119. + silent=
  120. + srcdir=
  121. + target=NONE
  122. + verbose=
  123. + x_includes=
  124. + x_libraries=
  125. + ac_prev=
  126. + for ac_option
  127. + do
  128. +   # If the previous option needs an argument, assign it.
  129. +   if test -n "$ac_prev"; then
  130. +     eval "$ac_prev=\$ac_option"
  131. +     ac_prev=
  132. +     continue
  133. +   fi
  134. +   # Accept (but ignore some of) the important Cygnus configure
  135. +   # options, so we can diagnose typos.
  136. +   case "$ac_option" in
  137. +   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  138. +   *) ac_optarg= ;;
  139. +   esac
  140. +   case "$ac_option" in
  141. +   -build | --build | --buil | --bui | --bu | --b)
  142. +     ac_prev=build ;;
  143. +   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  144. +     build="$ac_optarg" ;;
  145. +   -disable-* | --disable-*)
  146. +     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  147. +     # Reject names that aren't valid shell variable names.
  148. +     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  149. +       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  150. +     fi
  151. +     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  152. +     eval "enable_${ac_feature}=no" ;;
  153. +   -enable-* | --enable-*)
  154. +     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  155. +     # Reject names that aren't valid shell variable names.
  156. +     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  157. +       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  158. +     fi
  159. +     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  160. +     case "$ac_option" in
  161. +       *=*) ;;
  162. +       *) ac_optarg=yes ;;
  163. +     esac
  164. +     eval "enable_${ac_feature}='$ac_optarg'" ;;
  165. +   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  166. +   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  167. +   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  168. +   | --exec | --exe | --ex)
  169. +     ac_prev=exec_prefix ;;
  170. +   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  171. +   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  172. +   | --exec=* | --exe=* | --ex=*)
  173. +     exec_prefix="$ac_optarg" ;;
  174. +   -gas | --gas | --ga | --g)
  175. +     with_gas=yes ;; # Obsolete; use --with-gas.
  176. +   -help | --help | --hel | --he)
  177. +     cat << EOF
  178. + $ac_usage
  179. + EOF
  180. +     exit 0 ;;
  181. +   -host | --host | --hos | --ho)
  182. +     ac_prev=host ;;
  183. +   -host=* | --host=* | --hos=* | --ho=*)
  184. +     host="$ac_optarg" ;;
  185. +   -nfp | --nfp | --nf)
  186. +     with_fp=no ;; # Obsolete; use --without-fp.
  187. +   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  188. +   | --no-cr | --no-c)
  189. +     no_create=yes ;;
  190. +   -norecursion | --norecursion | --norecursio | --norecursi \
  191. +   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  192. +     norecursion=yes ;;
  193. +   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  194. +     ac_prev=prefix ;;
  195. +   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  196. +     prefix="$ac_optarg" ;;
  197. +   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  198. +   | --program-pre | --program-pr | --program-p)
  199. +     ac_prev=program_prefix ;;
  200. +   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  201. +   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  202. +     program_prefix="$ac_optarg" ;;
  203. +   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  204. +   | --program-suf | --program-su | --program-s)
  205. +     ac_prev=program_suffix ;;
  206. +   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  207. +   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  208. +     program_suffix="$ac_optarg" ;;
  209. +   -program-transform-name | --program-transform-name \
  210. +   | --program-transform-nam | --program-transform-na \
  211. +   | --program-transform-n | --program-transform- \
  212. +   | --program-transform | --program-transfor \
  213. +   | --program-transfo | --program-transf \
  214. +   | --program-trans | --program-tran \
  215. +   | --progr-tra | --program-tr | --program-t)
  216. +     ac_prev=program_transform_name ;;
  217. +   -program-transform-name=* | --program-transform-name=* \
  218. +   | --program-transform-nam=* | --program-transform-na=* \
  219. +   | --program-transform-n=* | --program-transform-=* \
  220. +   | --program-transform=* | --program-transfor=* \
  221. +   | --program-transfo=* | --program-transf=* \
  222. +   | --program-trans=* | --program-tran=* \
  223. +   | --progr-tra=* | --program-tr=* | --program-t=*)
  224. +     program_transform_name="$ac_optarg" ;;
  225. +   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  226. +   | -silent | --silent | --silen | --sile | --sil)
  227. +     silent=yes ;;
  228. +   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  229. +     ac_prev=srcdir ;;
  230. +   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  231. +     srcdir="$ac_optarg" ;;
  232. +   -target | --target | --targe | --targ | --tar | --ta | --t)
  233. +     ac_prev=target ;;
  234. +   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  235. +     target="$ac_optarg" ;;
  236. +   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  237. +     verbose=yes ;;
  238. +   -version | --version | --versio | --versi | --vers)
  239. +     /bin/echo "configure generated by autoconf version 1.11"
  240. +     exit 0 ;;
  241. +   -with-* | --with-*)
  242. +     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  243. +     # Reject names that aren't valid shell variable names.
  244. +     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  245. +       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  246. +     fi
  247. +     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  248. +     case "$ac_option" in
  249. +       *=*) ;;
  250. +       *) ac_optarg=yes ;;
  251. +     esac
  252. +     eval "with_${ac_package}='$ac_optarg'" ;;
  253. +   -without-* | --without-*)
  254. +     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  255. +     # Reject names that aren't valid shell variable names.
  256. +     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  257. +       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  258. +     fi
  259. +     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  260. +     eval "with_${ac_package}=no" ;;
  261. +   --x) with_x=yes ;; # Obsolete; use --with-x.
  262. +   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  263. +   | --x-incl | --x-inc | --x-in | --x-i)
  264. +     ac_prev=x_includes ;;
  265. +   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  266. +   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  267. +     x_includes="$ac_optarg" ;;
  268. +   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  269. +   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  270. +     ac_prev=x_libraries ;;
  271. +   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  272. +   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  273. +     x_libraries="$ac_optarg" ;;
  274. +   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  275. +     ;;
  276. +   *) 
  277. +     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  278. +       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  279. +     fi
  280. +     if test "x$nonopt" != xNONE; then
  281. +       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  282. +     fi
  283. +     nonopt="$ac_option"
  284. +     ;;
  285. +   esac
  286. + done
  287. + if test -n "$ac_prev"; then
  288. +   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  289. + fi
  290. + trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  291. + trap 'rm -fr confdefs* $ac_clean_files' 0
  292. + # Save the original args if we used an alternate arg parser.
  293. + ac_configure_temp="${configure_args-$*}"
  294. + # Strip out --no-create and --norecursion so they don't pile up.
  295. + configure_args=
  296. + for ac_arg in $ac_configure_temp; do
  297. +   case "$ac_arg" in
  298. +   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  299. +   | --no-cr | --no-c) ;;
  300. +   -norecursion | --norecursion | --norecursio | --norecursi \
  301. +   | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
  302. +   *) configure_args="$configure_args $ac_arg" ;;
  303. +   esac
  304. + done
  305. + # NLS nuisances.
  306. + # These must not be set unconditionally because not all systems understand
  307. + # e.g. LANG=C (notably SCO).
  308. + if test "${LC_ALL+set}" = 'set'; then LC_ALL=C; export LC_ALL; fi
  309. + if test "${LANG+set}"   = 'set'; then LANG=C;   export LANG;   fi
  310. + # confdefs.h avoids OS command line length limits that DEFS can exceed.
  311. + rm -rf conftest* confdefs.h
  312. + # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  313. + /bin/echo > confdefs.h
  314. + # A filename unique to this package, relative to the directory that
  315. + # configure is in, which we can look for to find out if srcdir is correct.
  316. + ac_unique_file=fonts/bchb.afm
  317. + # Find the source files, if location was not specified.
  318. + if test -z "$srcdir"; then
  319. +   ac_srcdir_defaulted=yes
  320. +   # Try the directory containing this script, then `..'.
  321. +   ac_prog=$0
  322. +   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  323. +   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  324. +   srcdir=$ac_confdir
  325. +   if test ! -r $srcdir/$ac_unique_file; then
  326. +     srcdir=..
  327. +   fi
  328. + fi
  329. + if test ! -r $srcdir/$ac_unique_file; then
  330. +   if test x$ac_srcdir_defaulted = xyes; then
  331. +     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  332. +   else
  333. +     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  334. +   fi
  335. + fi
  336. + ac_ext=c
  337. + # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  338. + ac_cpp='${CPP}'
  339. + ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  340. + # Make sure to not get the incompatible SysV /etc/install and
  341. + # /usr/sbin/install, which might be in PATH before a BSD-like install,
  342. + # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  343. + # or the AFS install, which mishandles nonexistent args, or
  344. + # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  345. + # `staff', or /sbin/install on IRIX which has incompatible command-line
  346. + # syntax.  Sigh.
  347. + #
  348. + #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  349. + #     anyway.
  350. + # This turns out not to be true, so the mere pathname isn't an indication
  351. + # of whether the program works.  What we really need is a set of tests for
  352. + # the install program to see if it actually works in all the required ways.
  353. + #
  354. + # Avoid using ./install, which might have been erroneously created
  355. + # by make from ./install.sh.
  356. + if test -z "${INSTALL}"; then
  357. +   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  358. +   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  359. +   for ac_dir in $PATH; do
  360. +     case "$ac_dir" in
  361. +     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  362. +     *)
  363. +       # OSF1 and SCO ODT 3.0 have their own names for install.
  364. +       for ac_prog in installbsd scoinst install; do
  365. +         if test -f $ac_dir/$ac_prog; then
  366. +       if test $ac_prog = install &&
  367. +             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  368. +         # AIX install.  It has an incompatible calling convention.
  369. +         # OSF/1 installbsd also uses dspmsg, but is usable.
  370. +         :
  371. +       else
  372. +         INSTALL="$ac_dir/$ac_prog -c"
  373. +         break 2
  374. +       fi
  375. +     fi
  376. +       done
  377. +       ;;
  378. +     esac
  379. +   done
  380. +   IFS="$ac_save_ifs"
  381. + fi
  382. + if test -z "$INSTALL"; then
  383. +   # As a last resort, use the slow shell script.
  384. +   for ac_dir in ${srcdir} ${srcdir}/.. ${srcdir}/../..; do
  385. +     if test -f $ac_dir/install.sh; then
  386. +       INSTALL="$ac_dir/install.sh -c"; break
  387. +     fi
  388. +   done
  389. + fi
  390. + if test -z "$INSTALL"; then
  391. +   /bin/echo "configure: can not find install.sh in ${srcdir} or ${srcdir}/.. or ${srcdir}/../.." >&2; exit 1
  392. + fi
  393. + test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  394. + # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  395. + # It thinks the first close brace ends the variable substitution.
  396. + test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  397. + test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  398. + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  399. + test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  400. + # The preferred way to propogate these variables is regular @ substitutions.
  401. + if test -n "$prefix"; then
  402. +   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  403. + else
  404. +   prefix=/usr/local
  405. + fi
  406. + if test -n "$exec_prefix"; then
  407. +   ac_prsub="$ac_prsub
  408. + s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  409. + else
  410. +   exec_prefix='${prefix}' # Let make expand it.
  411. + fi
  412. + # Any assignment to VPATH causes Sun make to only execute
  413. + # the first set of double-colon rules, so remove it if not needed.
  414. + # If there is a colon in the path, we need to keep it.
  415. + if test "x$srcdir" = x.; then
  416. +   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  417. + fi
  418. + # Quote sed substitution magic chars in DEFS.
  419. + cat >conftest.def <<EOF
  420. + $DEFS
  421. + EOF
  422. + ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  423. + DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  424. + rm -f conftest.def
  425. + # Substitute for predefined variables.
  426. + trap 'rm -f config.status; exit 1' 1 2 15
  427. + /bin/echo creating config.status
  428. + # Some systems, like AmigaDOS, won't allow you to remove a script that is
  429. + # being executed, so just move it out of the way instead.
  430. + if test -f config.status; then mv config.status config.status.old; else true; fi
  431. + cat > config.status <<EOF
  432. + #!/bin/sh
  433. + # Generated automatically by configure.
  434. + # Run this file to recreate the current configuration.
  435. + # This directory was configured as follows,
  436. + # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  437. + #
  438. + # $0 $configure_args
  439. + ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  440. + for ac_option
  441. + do
  442. +   case "\$ac_option" in
  443. +   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  444. +     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  445. +     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  446. +   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  447. +     /bin/echo "config.status generated by autoconf version 1.11"
  448. +     exit 0 ;;
  449. +   -help | --help | --hel | --he | --h)
  450. +     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  451. +   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  452. +   esac
  453. + done
  454. + trap 'rm -f Makefile; exit 1' 1 2 15
  455. + INSTALL='$INSTALL'
  456. + INSTALL_PROGRAM='$INSTALL_PROGRAM'
  457. + INSTALL_DATA='$INSTALL_DATA'
  458. + LIBS='$LIBS'
  459. + srcdir='$srcdir'
  460. + top_srcdir='$top_srcdir'
  461. + prefix='$prefix'
  462. + exec_prefix='$exec_prefix'
  463. + DEFS='$DEFS'
  464. + ac_prsub='$ac_prsub'
  465. + ac_vpsub='$ac_vpsub'
  466. + extrasub='$extrasub'
  467. + EOF
  468. + cat >> config.status <<\EOF
  469. + ac_given_srcdir=$srcdir
  470. + CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  471. + for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  472. +   # Remove last slash and all that follows it.  Not all systems have dirname.
  473. +   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  474. +   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  475. +     # The file is in a subdirectory.
  476. +     test ! -d "$ac_dir" && mkdir "$ac_dir"
  477. +     ac_dir_suffix="/$ac_dir"
  478. +   else
  479. +     ac_dir_suffix=
  480. +   fi
  481. +   # A "../" for each directory in $ac_dir_suffix.
  482. +   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  483. +   case "$ac_given_srcdir" in
  484. +   .)  srcdir=.
  485. +       if test -z "$ac_dir_suffix"; then top_srcdir=.
  486. +       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  487. +   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  488. +   *) # Relative path.
  489. +     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  490. +     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  491. +   esac
  492. +   /bin/echo creating "$ac_file"
  493. +   rm -f "$ac_file"
  494. +   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  495. +   case "$ac_file" in
  496. +     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  497. +     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  498. +   esac
  499. +   sed -e "
  500. + $ac_prsub
  501. + $ac_vpsub
  502. + $extrasub
  503. + s%@INSTALL@%$INSTALL%g
  504. + s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  505. + s%@INSTALL_DATA@%$INSTALL_DATA%g
  506. + s%@LIBS@%$LIBS%g
  507. + s%@srcdir@%$srcdir%g
  508. + s%@top_srcdir@%$top_srcdir%g
  509. + s%@prefix@%$prefix%g
  510. + s%@exec_prefix@%$exec_prefix%g
  511. + s%@DEFS@%$DEFS%
  512. + " $ac_given_srcdir/${ac_file}.in >> $ac_file
  513. + fi; done
  514. + exit 0
  515. + EOF
  516. + chmod +x config.status
  517. + # Some shells look in PATH for config.status without the "./".
  518. + test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} ./config.status
  519. diff -rc --new-file gs-fonts-2.6.1/configure.in /gnu/src/amiga/gs-fonts-2.6.1/configure.in
  520. *** gs-fonts-2.6.1/configure.in    Thu Jan  1 00:00:00 1970
  521. --- /gnu/src/amiga/gs-fonts-2.6.1/configure.in    Sat Jul  9 12:42:57 1994
  522. ***************
  523. *** 0 ****
  524. --- 1,6 ----
  525. + dnl Process this file with autoconf to produce a configure script.
  526. + AC_INIT(fonts/bchb.afm)
  527. + AC_PROG_INSTALL
  528. + AC_OUTPUT(Makefile)
  529.