home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / gs-fonts-2.6.1-diffs.lha / src / diffs / gs-fonts-2.6.1.diffs
Text File  |  1994-07-12  |  22KB  |  609 lines

  1. diff -rc --new-file /src/baseline/gs-fonts-2.6.1/Makefile.in gs-fonts-2.6.1/Makefile.in
  2. *** /src/baseline/gs-fonts-2.6.1/Makefile.in    Thu Jan  1 00:00:00 1970
  3. --- gs-fonts-2.6.1/Makefile.in    Sun Jul 10 08:16:03 1994
  4. ***************
  5. *** 0 ****
  6. --- 1,41 ----
  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. + #### End of system configuration section. ####
  20. + # Define the default directories for the runtime
  21. + # initialization and font files.  Separate multiple directories with a ','.
  22. + gsdatadir = $(libdir)/ghostscript
  23. + gsfontsdir = $(gsdatadir)/fonts
  24. + # Installation
  25. + all:
  26. + clean:
  27. + clobber:
  28. + install:
  29. +     if [ -d $(libdir) ]; then true; else mkdir $(libdir); fi
  30. +     if [ -d $(gsfontsdir) ]; then true; else mkdir $(gsfontsdir); fi
  31. +     for f in `(cd $(srcdir)/fonts ; find . -type f -print)` ; do $(INSTALL_DATA) $(srcdir)/fonts/$$f $(gsfontsdir)/$$f ; done
  32. + Makefile:    config.status $(srcdir)/Makefile.in
  33. +         $(SHELL) config.status
  34. diff -rc --new-file /src/baseline/gs-fonts-2.6.1/Product-Info gs-fonts-2.6.1/Product-Info
  35. *** /src/baseline/gs-fonts-2.6.1/Product-Info    Thu Jan  1 00:00:00 1970
  36. --- gs-fonts-2.6.1/Product-Info    Tue Jul 12 17:25:24 1994
  37. ***************
  38. *** 0 ****
  39. --- 1,22 ----
  40. + .name
  41. + ghostscript-fonts
  42. + .type
  43. + Miscellaneous
  44. + .short
  45. + GNU postscript interpreter fonts
  46. + .description
  47. + Ghostscript is the name of a set of software that provides an
  48. + interpreter for the PostScript (TM) language, and a set of C
  49. + procedures (the Ghostscript library) that implement the graphics
  50. + capabilities that appear as primitive operations in the PostScript
  51. + language.
  52. + .version
  53. + 2.6.1
  54. + .author
  55. + L. Peter Deutsch
  56. + .distribution
  57. + Ghostscript General Public License
  58. + .email
  59. + ghost@aladdin.com
  60. + .described-by
  61. + Fred Fish (fnf@amigalib.com)
  62. diff -rc --new-file /src/baseline/gs-fonts-2.6.1/configure gs-fonts-2.6.1/configure
  63. *** /src/baseline/gs-fonts-2.6.1/configure    Thu Jan  1 00:00:00 1970
  64. --- gs-fonts-2.6.1/configure    Sat Jul  9 12:51:47 1994
  65. ***************
  66. *** 0 ****
  67. --- 1,515 ----
  68. + #!/bin/sh
  69. + # Guess values for system-dependent variables and create Makefiles.
  70. + # Generated automatically using autoconf version 1.11 
  71. + # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  72. + # This configure script is free software; you can redistribute it and/or
  73. + # modify it under the terms of the GNU General Public License as published
  74. + # by the Free Software Foundation; either version 2, or (at your option)
  75. + # any later version.
  76. + # This script is distributed in the hope that it will be useful, but
  77. + # WITHOUT ANY WARRANTY; without even the implied warranty of
  78. + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  79. + # Public License for more details.
  80. + # You should have received a copy of the GNU General Public License
  81. + # along with this program; if not, write to the Free Software
  82. + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  83. + # Save the original args to write them into config.status later.
  84. + configure_args="$*"
  85. + # Only options that might do something get documented.
  86. + ac_usage="Usage: configure [options] [host]
  87. + Options: [defaults in brackets after descriptions]
  88. + --build=BUILD        configure for building on BUILD [BUILD=HOST]
  89. + --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  90. + --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  91. + --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  92. + --help            print this message
  93. + --host=HOST        configure for HOST [guessed]
  94. + --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  95. + --quiet, --silent    do not print \`checking for...' messages
  96. + --srcdir=DIR        find the sources in DIR [configure dir or ..]
  97. + --target=TARGET        configure for TARGET [TARGET=HOST]
  98. + --verbose        print results of checks
  99. + --version        print the version of autoconf that created configure
  100. + --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  101. + --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  102. + --x-includes=DIR    X include files are in DIR
  103. + --x-libraries=DIR    X library files are in DIR"
  104. + # Initialize some variables set by options.
  105. + # The variables have the same names as the options, with
  106. + # dashes changed to underlines.
  107. + build=NONE
  108. + exec_prefix=
  109. + host=NONE
  110. + no_create=
  111. + nonopt=NONE
  112. + norecursion=
  113. + prefix=
  114. + program_prefix=
  115. + program_suffix=
  116. + program_transform_name=
  117. + silent=
  118. + srcdir=
  119. + target=NONE
  120. + verbose=
  121. + x_includes=
  122. + x_libraries=
  123. + ac_prev=
  124. + for ac_option
  125. + do
  126. +   # If the previous option needs an argument, assign it.
  127. +   if test -n "$ac_prev"; then
  128. +     eval "$ac_prev=\$ac_option"
  129. +     ac_prev=
  130. +     continue
  131. +   fi
  132. +   # Accept (but ignore some of) the important Cygnus configure
  133. +   # options, so we can diagnose typos.
  134. +   case "$ac_option" in
  135. +   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  136. +   *) ac_optarg= ;;
  137. +   esac
  138. +   case "$ac_option" in
  139. +   -build | --build | --buil | --bui | --bu | --b)
  140. +     ac_prev=build ;;
  141. +   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  142. +     build="$ac_optarg" ;;
  143. +   -disable-* | --disable-*)
  144. +     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  145. +     # Reject names that aren't valid shell variable names.
  146. +     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  147. +       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  148. +     fi
  149. +     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  150. +     eval "enable_${ac_feature}=no" ;;
  151. +   -enable-* | --enable-*)
  152. +     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  153. +     # Reject names that aren't valid shell variable names.
  154. +     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  155. +       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  156. +     fi
  157. +     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  158. +     case "$ac_option" in
  159. +       *=*) ;;
  160. +       *) ac_optarg=yes ;;
  161. +     esac
  162. +     eval "enable_${ac_feature}='$ac_optarg'" ;;
  163. +   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  164. +   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  165. +   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  166. +   | --exec | --exe | --ex)
  167. +     ac_prev=exec_prefix ;;
  168. +   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  169. +   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  170. +   | --exec=* | --exe=* | --ex=*)
  171. +     exec_prefix="$ac_optarg" ;;
  172. +   -gas | --gas | --ga | --g)
  173. +     with_gas=yes ;; # Obsolete; use --with-gas.
  174. +   -help | --help | --hel | --he)
  175. +     cat << EOF
  176. + $ac_usage
  177. + EOF
  178. +     exit 0 ;;
  179. +   -host | --host | --hos | --ho)
  180. +     ac_prev=host ;;
  181. +   -host=* | --host=* | --hos=* | --ho=*)
  182. +     host="$ac_optarg" ;;
  183. +   -nfp | --nfp | --nf)
  184. +     with_fp=no ;; # Obsolete; use --without-fp.
  185. +   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  186. +   | --no-cr | --no-c)
  187. +     no_create=yes ;;
  188. +   -norecursion | --norecursion | --norecursio | --norecursi \
  189. +   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  190. +     norecursion=yes ;;
  191. +   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  192. +     ac_prev=prefix ;;
  193. +   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  194. +     prefix="$ac_optarg" ;;
  195. +   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  196. +   | --program-pre | --program-pr | --program-p)
  197. +     ac_prev=program_prefix ;;
  198. +   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  199. +   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  200. +     program_prefix="$ac_optarg" ;;
  201. +   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  202. +   |