home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / groff-1.09-src.lha / src / diffs / groff-1.09.diffs
Text File  |  1994-02-21  |  52KB  |  1,362 lines

  1. diff -rc groff-1.09-fsf/Makefile.in groff-1.09-amiga/Makefile.in
  2. *** groff-1.09-fsf/Makefile.in    Mon Feb 14 08:43:08 1994
  3. --- groff-1.09-amiga/Makefile.in    Mon Feb 21 16:29:22 1994
  4. ***************
  5. *** 75,81 ****
  6.   # Common prefix for installation directories.
  7.   # Used in definitions of exec_prefix, datasubdir, fontpath, manroot.
  8.   # This must already exist when you do make install.
  9. ! prefix=/usr/local
  10.   
  11.   exec_prefix=$(prefix)
  12.   
  13. --- 75,81 ----
  14.   # Common prefix for installation directories.
  15.   # Used in definitions of exec_prefix, datasubdir, fontpath, manroot.
  16.   # This must already exist when you do make install.
  17. ! prefix=/gnu
  18.   
  19.   exec_prefix=$(prefix)
  20.   
  21. ***************
  22. *** 90,102 ****
  23.   fontdir=$(datasubdir)/font
  24.   
  25.   # fontpath says where to look for dev*/*.
  26. ! fontpath=.:$(fontdir):$(prefix)/lib/font:/usr/lib/font
  27.   
  28.   # tmacdir says where to install macros.
  29.   tmacdir=$(datasubdir)/tmac
  30.   
  31.   # tmacpath says where to look for macro files.
  32. ! tmacpath=.:$(tmacdir):/usr/lib/tmac
  33.   
  34.   # Extension to be used for refer index files.  Index files are not
  35.   # sharable between different architectures, so you might want to use
  36. --- 90,102 ----
  37.   fontdir=$(datasubdir)/font
  38.   
  39.   # fontpath says where to look for dev*/*.
  40. ! fontpath=.:$(fontdir):$(prefix)/lib/font
  41.   
  42.   # tmacdir says where to install macros.
  43.   tmacdir=$(datasubdir)/tmac
  44.   
  45.   # tmacpath says where to look for macro files.
  46. ! tmacpath=.:$(tmacdir)
  47.   
  48.   # Extension to be used for refer index files.  Index files are not
  49.   # sharable between different architectures, so you might want to use
  50. ***************
  51. *** 105,111 ****
  52.   indexext=.i
  53.   
  54.   # Directory containing the default index for refer.
  55. ! indexdir=/usr/dict/papers
  56.   
  57.   # The filename (without suffix) of the default index for refer.
  58.   indexname=Ind
  59. --- 105,111 ----
  60.   indexext=.i
  61.   
  62.   # Directory containing the default index for refer.
  63. ! indexdir=/gnu/dict/papers
  64.   
  65.   # The filename (without suffix) of the default index for refer.
  66.   indexname=Ind
  67. diff -rc groff-1.09-fsf/addftinfo/addftinfo.cc groff-1.09-amiga/addftinfo/addftinfo.cc
  68. *** groff-1.09-fsf/addftinfo/addftinfo.cc    Sun Feb 13 10:24:31 1994
  69. --- groff-1.09-amiga/addftinfo/addftinfo.cc    Mon Feb 21 16:15:17 1994
  70. ***************
  71. *** 20,26 ****
  72.   
  73.   #include <stdio.h>
  74.   #include <ctype.h>
  75. ! #include <string.h>
  76.   #include <assert.h>
  77.   #include <stdlib.h>
  78.   #include <errno.h>
  79. --- 20,26 ----
  80.   
  81.   #include <stdio.h>
  82.   #include <ctype.h>
  83. ! #include </gnu/include/string.h>
  84.   #include <assert.h>
  85.   #include <stdlib.h>
  86.   #include <errno.h>
  87. diff -rc groff-1.09-fsf/afmtodit/Makefile.sub groff-1.09-amiga/afmtodit/Makefile.sub
  88. *** groff-1.09-fsf/afmtodit/Makefile.sub    Wed Oct 28 12:48:22 1992
  89. --- groff-1.09-amiga/afmtodit/Makefile.sub    Mon Feb 21 16:31:05 1994
  90. ***************
  91. *** 5,11 ****
  92.   
  93.   afmtodit: afmtodit.pl
  94.       if test -n "$(PERLPATH)"; then \
  95. !       sed -e 's;/usr/bin/perl;$(PERLPATH);' \
  96.                 $(srcdir)/afmtodit.pl >afmtodit; \
  97.       else \
  98.         cp $(srcdir)/afmtodit.pl afmtodit; \
  99. --- 5,11 ----
  100.   
  101.   afmtodit: afmtodit.pl
  102.       if test -n "$(PERLPATH)"; then \
  103. !       sed -e 's;/bin/perl;$(PERLPATH);' \
  104.                 $(srcdir)/afmtodit.pl >afmtodit; \
  105.       else \
  106.         cp $(srcdir)/afmtodit.pl afmtodit; \
  107. diff -rc groff-1.09-fsf/afmtodit/afmtodit.pl groff-1.09-amiga/afmtodit/afmtodit.pl
  108. *** groff-1.09-fsf/afmtodit/afmtodit.pl    Mon Apr 19 19:53:51 1993
  109. --- groff-1.09-amiga/afmtodit/afmtodit.pl    Mon Feb 21 16:30:55 1994
  110. ***************
  111. *** 1,4 ****
  112. ! #! /usr/bin/perl -P- # -*- Perl -*-
  113.   #Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  114.   #     Written by James Clark (jjc@jclark.com)
  115.   #
  116. --- 1,4 ----
  117. ! #! /bin/perl -P- # -*- Perl -*-
  118.   #Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  119.   #     Written by James Clark (jjc@jclark.com)
  120.   #
  121. diff -rc groff-1.09-fsf/configure groff-1.09-amiga/configure
  122. *** groff-1.09-fsf/configure    Sat Feb 12 14:43:06 1994
  123. --- groff-1.09-amiga/configure    Mon Feb 21 17:07:53 1994
  124. ***************
  125. *** 36,42 ****
  126.       case $arg in
  127.        # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  128.        -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  129. !     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  130.        -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  131.       next_exec_prefix=yes ;;
  132.   
  133. --- 36,42 ----
  134.       case $arg in
  135.        # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  136.        -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  137. !     exec_prefix=`/bin/echo $arg | sed 's/[-a-z_]*=//'` ;;
  138.        -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  139.       next_exec_prefix=yes ;;
  140.   
  141. ***************
  142. *** 49,72 ****
  143.        -nfp | --nfp | --nf) ;;
  144.   
  145.        -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  146. !     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  147.        -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  148.       next_prefix=yes ;;
  149.   
  150.        -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  151. !     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  152.        -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  153.       next_srcdir=yes ;;
  154.   
  155.        -with-* | --with-*)
  156. !        package=`echo $arg|sed -e 's/-*with-//' -e 's/=.*//'`
  157.          # Reject names that aren't valid shell variable names.
  158.          if test -n "`echo $package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  159.            echo "configure: $package: invalid package name" >&2; exit 1
  160.          fi
  161.          package=`echo $package| sed 's/-/_/g'`
  162.          case "$arg" in
  163. !          *=*) val="`echo $arg|sed 's/[^=]*=//'`" ;;
  164.            *) val=1 ;;
  165.          esac
  166.          eval "with_$package='$val'" ;;
  167. --- 49,72 ----
  168.        -nfp | --nfp | --nf) ;;
  169.   
  170.        -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  171. !     prefix=`/bin/echo $arg | sed 's/[-a-z_]*=//'` ;;
  172.        -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  173.       next_prefix=yes ;;
  174.   
  175.        -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  176. !     srcdir=`/bin/echo $arg | sed 's/[-a-z_]*=//'` ;;
  177.        -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  178.       next_srcdir=yes ;;
  179.   
  180.        -with-* | --with-*)
  181. !        package=`/bin/echo $arg|sed -e 's/-*with-//' -e 's/=.*//'`
  182.          # Reject names that aren't valid shell variable names.
  183.          if test -n "`echo $package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  184.            echo "configure: $package: invalid package name" >&2; exit 1
  185.          fi
  186.          package=`echo $package| sed 's/-/_/g'`
  187.          case "$arg" in
  188. !          *=*) val="`/bin/echo $arg|sed 's/[^=]*=//'`" ;;
  189.            *) val=1 ;;
  190.          esac
  191.          eval "with_$package='$val'" ;;
  192. ***************
  193. *** 102,108 ****
  194.     srcdirdefaulted=yes
  195.     # Try the directory containing this script, then `..'.
  196.     prog=$0
  197. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  198.     test "X$confdir" = "X$prog" && confdir=.
  199.     srcdir=$confdir
  200.     if test ! -r $srcdir/$unique_file; then
  201. --- 102,108 ----
  202.     srcdirdefaulted=yes
  203.     # Try the directory containing this script, then `..'.
  204.     prog=$0
  205. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  206.     test "X$confdir" = "X$prog" && confdir=.
  207.     srcdir=$confdir
  208.     if test ! -r $srcdir/$unique_file; then
  209. ***************
  210. *** 128,133 ****
  211. --- 128,136 ----
  212.   # Save the original args to write them into config.status later.
  213.   configure_args="$*"
  214.   
  215. + # Hack so we don't have to remember to configure with 
  216. + # -prefix=/gnu all the time.
  217. + prefix=/gnu
  218.   if test -z "$prefix"
  219.   then
  220.     echo checking for grops to derive installation directory prefix
  221. ***************
  222. *** 530,536 ****
  223.   
  224.   echo checking for ln -s
  225.   rm -f conftestdata
  226. ! if ln -s X conftestdata 2>/dev/null
  227.   then
  228.     rm -f conftestdata
  229.     LN_S="ln -s"
  230. --- 533,539 ---