summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2000-11-08 00:08:29 +0000
committerwiz <wiz@NetBSD.org>2000-11-08 00:08:29 +0000
commit29a60e8ab7ee1422489b72ee7cbb4d0cc25f04d3 (patch)
tree583e6d52b39b21c98ccb4b1941d8e4c93ec102d6 /gnu
parent85567a99836d39b433ab47ee0874b00a7671b467 (diff)
Undo last change for now.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/dist/diffutils/diff.c2
-rw-r--r--gnu/dist/diffutils/diff3.c2
-rw-r--r--gnu/dist/diffutils/sdiff.c2
-rw-r--r--gnu/usr.bin/diff/Makefile4
-rw-r--r--gnu/usr.bin/diff3/Makefile4
-rw-r--r--gnu/usr.bin/sdiff/Makefile4
6 files changed, 9 insertions, 9 deletions
diff --git a/gnu/dist/diffutils/diff.c b/gnu/dist/diffutils/diff.c
index 34b37867c71..ab1549be864 100644
--- a/gnu/dist/diffutils/diff.c
+++ b/gnu/dist/diffutils/diff.c
@@ -23,7 +23,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define GDIFF_MAIN
#include "diff.h"
#include <signal.h>
-#include <getopt.h>
+#include "getopt.h"
#include "fnmatch.h"
#ifndef DEFAULT_WIDTH
diff --git a/gnu/dist/diffutils/diff3.c b/gnu/dist/diffutils/diff3.c
index 50c5acf0159..5d94ab866db 100644
--- a/gnu/dist/diffutils/diff3.c
+++ b/gnu/dist/diffutils/diff3.c
@@ -20,7 +20,7 @@
#include "system.h"
#include <stdio.h>
#include <signal.h>
-#include <getopt.h>
+#include "getopt.h"
extern char const version_string[];
diff --git a/gnu/dist/diffutils/sdiff.c b/gnu/dist/diffutils/sdiff.c
index 0289af77573..57d56f1dc24 100644
--- a/gnu/dist/diffutils/sdiff.c
+++ b/gnu/dist/diffutils/sdiff.c
@@ -22,7 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "system.h"
#include <stdio.h>
#include <signal.h>
-#include <getopt.h>
+#include "getopt.h"
/* Size of chunks read from files which must be parsed into lines. */
#define SDIFF_BUFSIZE ((size_t) 65536)
diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile
index 1654262b3e9..d3bed5ab243 100644
--- a/gnu/usr.bin/diff/Makefile
+++ b/gnu/usr.bin/diff/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.14 2000/11/01 14:34:14 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2000/11/08 00:08:30 wiz Exp $
PROG= diff
SRCS= diff.c analyze.c cmpbuf.c io.c context.c ed.c normal.c util.c \
- dir.c regex.c side.c ifdef.c version.c
+ dir.c regex.c side.c ifdef.c version.c getopt.c getopt1.c
CPPFLAGS+= -DHAVE_CONFIG_H -I${.CURDIR} -I${DIST}/diffutils \
-DPR_PROGRAM=\"/usr/bin/pr\"
diff --git a/gnu/usr.bin/diff3/Makefile b/gnu/usr.bin/diff3/Makefile
index 5fd7e21320e..1251f4d2e50 100644
--- a/gnu/usr.bin/diff3/Makefile
+++ b/gnu/usr.bin/diff3/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2000/11/01 14:34:14 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2000/11/08 00:08:30 wiz Exp $
PROG= diff3
-SRCS= diff3.c version.c
+SRCS= diff3.c getopt.c getopt1.c version.c
CPPFLAGS+= -I${.CURDIR}/../diff -I${DIST}/diffutils \
-DHAVE_CONFIG_H -DDIFF_PROGRAM=\"/usr/bin/diff\"
diff --git a/gnu/usr.bin/sdiff/Makefile b/gnu/usr.bin/sdiff/Makefile
index 628b3cf50a2..c72885fd90d 100644
--- a/gnu/usr.bin/sdiff/Makefile
+++ b/gnu/usr.bin/sdiff/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2000/11/01 14:34:15 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2000/11/08 00:08:30 wiz Exp $
PROG= sdiff
-SRCS= sdiff.c version.c
+SRCS= sdiff.c getopt.c getopt1.c version.c
CPPFLAGS+= -I${.CURDIR}/../diff -I${DIST}/diffutils \
-DHAVE_CONFIG_H -DDIFF_PROGRAM=\"/usr/bin/diff\"