05a6ddff1a
Spiff compares the contents of file1 and file2 and prints a description of the important differences between the files. White space is ignored except to separate other objects. Spiff maintains tolerances below which differences between two floating point numbers are ignored. Differences in floating point notation (such as 3.4 3.40 and 3.4e01) are treated as unimportant. User specified delimited strings (i.e. comments) can also be ignored. Inside other user specified delimited strings (i.e. quoted strings) whitespace can be significant. Taken from a hint by Alan Barrett.
50 lines
1.2 KiB
Text
50 lines
1.2 KiB
Text
$NetBSD: patch-aa,v 1.1.1.1 2001/10/15 10:12:08 agc Exp $
|
|
|
|
--- Makefile 2001/10/15 09:58:02 1.1
|
|
+++ Makefile 2001/10/15 09:58:39
|
|
@@ -7,7 +7,7 @@
|
|
# name of the directory into which the binary should be installed
|
|
# used only when you use 'make install'
|
|
#
|
|
-INSDIR=/usr/local/bin
|
|
+INSDIR=${PREFIX}
|
|
|
|
#
|
|
# choose one from each of 1) 2) and 3) below
|
|
@@ -18,21 +18,21 @@
|
|
# choose a) b) or c)
|
|
#
|
|
# a) for BSD derivitives, enable the following line
|
|
-#OSFLAG=
|
|
+OSFLAG=
|
|
|
|
# b) for XENIX systems, enable the following line
|
|
#OSFLAG=-DXENIX
|
|
|
|
# b) for other A.T.&T. UNIX derivitives, enable the following line
|
|
-OSFLAG=-DATT
|
|
+#OSFLAG=-DATT
|
|
|
|
#
|
|
# 2) SELECTION OF TERMINAL CONTROL LIBRARY
|
|
# choose either of a) b) or c)
|
|
#
|
|
# a) if you use termcap, enable the following lines
|
|
-#TFLAG=-DM_TERMCAP
|
|
-#TLIB=termcap
|
|
+TFLAG=-DM_TERMCAP
|
|
+TLIB=termcap
|
|
|
|
# b) if you are using terminfo on a XENIX machine, enable the following lines
|
|
#TFLAG=-DM_TERMINFO
|
|
@@ -44,8 +44,8 @@
|
|
#TLIB=curses
|
|
|
|
# d) NONE OF THE ABOVE
|
|
-TFLAG=
|
|
-TLIB=m # just a link to mathlib; quick hack to avoid fixing Makefile
|
|
+#TFLAG=
|
|
+#TLIB=m # just a link to mathlib; quick hack to avoid fixing Makefile
|
|
|
|
#
|
|
# 3) SELECTION OF WINDOW MANAGER AVAILABILITY
|