home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / ed-0.1-diffs.lha / src / diffs / ed-0.1.diffs
Text File  |  1994-07-12  |  54KB  |  1,841 lines

  1. diff -rc --new-file /src/baseline/ed-0.1/Makefile.in ed-0.1/Makefile.in
  2. *** /src/baseline/ed-0.1/Makefile.in    Sat Mar 19 17:04:08 1994
  3. --- ed-0.1/Makefile.in    Sun Jun 12 16:37:35 1994
  4. ***************
  5. *** 22,28 ****
  6.   testdir = $(srcdir)/test
  7.   VPATH = @srcdir@
  8.   
  9. ! LN_S = @LN_S@
  10.   CC = @CC@
  11.   AR = ar
  12.   RANLIB = @RANLIB@
  13. --- 22,34 ----
  14.   testdir = $(srcdir)/test
  15.   VPATH = @srcdir@
  16.   
  17. ! # For the Amiga, force LN_S to be just "cp" rather than "ln -s", so that a
  18. ! # copy is made rather than a symbolic link.  We support symbolic links, but
  19. ! # we don't want to use them in the installation because the "mkisofs" CD-ROM
  20. ! # mastering software doesn't know what to do with them yet (convert to a
  21. ! # copy on the fly).
  22. ! #LN_S = @LN_S@
  23. ! LN_S = cp
  24.   CC = @CC@
  25.   AR = ar
  26.   RANLIB = @RANLIB@
  27. ***************
  28. *** 32,40 ****
  29.   MAKEINFO = makeinfo
  30.   TEXI2DVI = texi2dvi
  31.   
  32. ! CFLAGS = -g
  33.   DEFS = @DEFS@
  34. ! LDFLAGS = -g
  35.   LIBS = @LIBS@
  36.   
  37.   prefix = /usr/local
  38. --- 38,48 ----
  39.   MAKEINFO = makeinfo
  40.   TEXI2DVI = texi2dvi
  41.   
  42. ! # Disable default use of -g for AmigaDOS.
  43. ! CFLAGS = -O
  44.   DEFS = @DEFS@
  45. ! # Disable default use of -g for AmigaDOS.
  46. ! LDFLAGS =
  47.   LIBS = @LIBS@
  48.   
  49.   prefix = /usr/local
  50. diff -rc --new-file /src/baseline/ed-0.1/Product-Info ed-0.1/Product-Info
  51. *** /src/baseline/ed-0.1/Product-Info    Thu Jan  1 00:00:00 1970
  52. --- ed-0.1/Product-Info    Mon Jul 11 23:29:22 1994
  53. ***************
  54. *** 0 ****
  55. --- 1,23 ----
  56. + .name
  57. + ed
  58. + .fullname
  59. + GNU line editor
  60. + .type
  61. + Miscellaneous
  62. + .short
  63. + 8-bit-clean POSIX compliant line editor.
  64. + .description
  65. + "Ed" is a line-oriented text editor.  It is used to create, display,
  66. + modify and otherwise manipulate text files.  "Red" is a restricted ed:
  67. + it can only edit files in the current directory and cannot execute
  68. + shell commands.
  69. + .version
  70. + 0.1
  71. + .author
  72. + Andrew Moore
  73. + .requirements
  74. + Amiga binary requires ixemul.library.
  75. + .distribution
  76. + GNU Public License
  77. + .described-by
  78. + Fred Fish (fnf@amigalib.com)
  79. diff -rc --new-file /src/baseline/ed-0.1/configure ed-0.1/configure
  80. *** /src/baseline/ed-0.1/configure    Tue Apr 19 14:18:23 1994
  81. --- ed-0.1/configure    Fri Apr 29 14:41:39 1994
  82. ***************
  83. *** 1,135 ****
  84.   #!/bin/sh
  85.   # Guess values for system-dependent variables and create Makefiles.
  86. ! # Generated automatically using autoconf version 1.7.1 
  87. ! # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  88.   
  89. ! # This program is free software; you can redistribute it and/or modify
  90. ! # it under the terms of the GNU General Public License as published by
  91. ! # the Free Software Foundation; either version 2, or (at your option)
  92.   # any later version.
  93.   
  94. ! # This program is distributed in the hope that it will be useful,
  95. ! # but WITHOUT ANY WARRANTY; without even the implied warranty of
  96. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  97. ! # GNU General Public License for more details.
  98.   
  99.   # You should have received a copy of the GNU General Public License
  100.   # along with this program; if not, write to the Free Software
  101.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  102.   
  103. ! # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp]
  104. ! #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE[=VALUE]]
  105. ! # Ignores all args except --srcdir, --prefix, --exec-prefix, and
  106. ! # --with-PACKAGE[=VALUE] unless this script has special code to handle it.
  107.   
  108. ! for arg
  109.   do
  110. -   # Handle --exec-prefix with a space before the argument.
  111. -   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  112. -   # Handle --host with a space before the argument.
  113. -   elif test x$next_host = xyes; then next_host=
  114. -   # Handle --prefix with a space before the argument.
  115. -   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  116. -   # Handle --srcdir with a space before the argument.
  117. -   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  118. -   else
  119. -     case $arg in
  120. -      # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  121. -      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  122. -     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  123. -      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  124. -     next_exec_prefix=yes ;;
  125. -      -gas | --gas | --ga | --g) ;;
  126. -      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  127. -      -host | --host | --hos | --ho | --h)
  128. -     next_host=yes ;;
  129. -      -nfp | --nfp | --nf) ;;
  130. -      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  131. -     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  132. -      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  133. -     next_prefix=yes ;;
  134. -      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  135. -     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  136. -      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  137. -     next_srcdir=yes ;;
  138. -      -with-* | --with-*)
  139. -        package=`echo $arg|sed -e 's/-*with-//' -e 's/=.*//'`
  140. -        # Reject names that aren't valid shell variable names.
  141. -        if test -n "`echo $package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  142. -          echo "configure: $package: invalid package name" >&2; exit 1
  143. -        fi
  144. -        package=`echo $package| sed 's/-/_/g'`
  145. -        case "$arg" in
  146. -          *=*) val="`echo $arg|sed 's/[^=]*=//'`" ;;
  147. -          *) val=1 ;;
  148. -        esac
  149. -        eval "with_$package='$val'" ;;
  150.   
  151. !      -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
  152. !        verbose=yes ;;
  153.   
  154. !      *) ;;
  155.       esac
  156. !   fi
  157.   done
  158.   
  159. ! trap 'rm -fr conftest* confdefs* core; exit 1' 1 3 15
  160. ! trap 'rm -f confdefs*' 0
  161.   
  162.   # NLS nuisances.
  163.   # These must not be set unconditionally because not all systems understand
  164.   # e.g. LANG=C (notably SCO).
  165. ! if test "${LC_ALL+set}" = 'set' ; then LC_ALL=C; export LC_ALL; fi
  166. ! if test "${LANG+set}"   = 'set' ; then LANG=C;   export LANG;   fi
  167.   
  168. ! rm -f conftest* confdefs.h
  169.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  170. ! echo > confdefs.h
  171. ! compile='${CC-cc} $CFLAGS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  172.   
  173.   # A filename unique to this package, relative to the directory that
  174.   # configure is in, which we can look for to find out if srcdir is correct.
  175. ! unique_file=ed.h
  176.   
  177.   # Find the source files, if location was not specified.
  178.   if test -z "$srcdir"; then
  179. !   srcdirdefaulted=yes
  180.     # Try the directory containing this script, then `..'.
  181. !   prog=$0
  182. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  183. !   test "X$confdir" = "X$prog" && confdir=.
  184. !   srcdir=$confdir
  185. !   if test ! -r $srcdir/$unique_file; then
  186.       srcdir=..
  187.     fi
  188.   fi
  189. ! if test ! -r $srcdir/$unique_file; then
  190. !   if test x$srcdirdefaulted = xyes; then
  191. !     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  192.     else
  193. !     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  194.     fi
  195. -   exit 1
  196.   fi
  197. ! # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  198. ! # But we can't avoid them for `..', to make subdirectories work.
  199. ! case $srcdir in
  200. !   .|/*|~*) ;;
  201. !   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  202. ! esac
  203.   
  204.   
  205. - # Save the original args to write them into config.status later.
  206. - configure_args="$*"
  207.   
  208. ! echo checking for ln -s
  209.   rm -f conftestdata
  210.   if ln -s X conftestdata 2>/dev/null
  211.   then
  212. --- 1,321 ----
  213.   #!/bin/sh
  214.   # Guess values for system-dependent variables and create Makefiles.
  215. ! # Generated automatically using autoconf version 1.9 
  216. ! # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  217.   
  218. ! # This configure script is free software; you can redistribute it and/or
  219. ! # modify it under the terms of the GNU General Public License as published
  220. ! # by the Free Software Foundation; either version 2, or (at your option)
  221.   # any later version.
  222.   
  223. ! # This script is distributed in the hope that it will be useful, but
  224. ! # WITHOUT ANY WARRANTY; without even the implied warranty of
  225. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  226. ! # Pub