summaryrefslogtreecommitdiff
path: root/net-mgmt/dhcpconf/files/patch-aa
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-09-23 01:36:53 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-09-23 01:36:53 +0000
commit8c7499bdfa85657ea6c2517ada0ef4a4db489beb (patch)
tree1c37a6088704b234484b1352cd1f882fb2a253ad /net-mgmt/dhcpconf/files/patch-aa
parentCatch up with Wnn6-lib update. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_1'.release/4.1.1
Diffstat (limited to 'net-mgmt/dhcpconf/files/patch-aa')
-rw-r--r--net-mgmt/dhcpconf/files/patch-aa34
1 files changed, 0 insertions, 34 deletions
diff --git a/net-mgmt/dhcpconf/files/patch-aa b/net-mgmt/dhcpconf/files/patch-aa
deleted file mode 100644
index b1f1467673d7..000000000000
--- a/net-mgmt/dhcpconf/files/patch-aa
+++ /dev/null
@@ -1,34 +0,0 @@
---- Makefile Wed Dec 15 12:45:24 1999
-+++ Makefile.new Wed Jan 26 23:15:10 2000
-@@ -1,23 +1,24 @@
- TARGET = dhcp-conf
--CC = gcc
--LIBS = -lgdbm -lnewt
-+CC ?= gcc
-+CFLAGS = $(PCFLAGS) -I$(PREFIX)/include
-+LIBS = -L$(PREFIX)/lib -lgdbm -lnewt
- OBJS = main.o screen.o help.o data.o
- #OPTS = -D__DEBUG__ -D__TRACE__
-
- $(TARGET) : $(OBJS)
-- $(CC) -o $(TARGET) $(LIBS) $(OBJS)
-+ $(CC) $(CFLAGS) -o $(TARGET) $(LIBS) $(OBJS)
-
- main.o : main.c includes.h main-proto.h screen-proto.h
-- $(CC) -c main.c $(OPTS)
-+ $(CC) $(CFLAGS) -c main.c $(OPTS)
-
- screen.o : screen.c includes.h screen-proto.h
-- $(CC) -c screen.c $(OPTS)
-+ $(CC) $(CFLAGS) -c screen.c $(OPTS)
-
- help.o : help.c includes.h help-proto.h
-- $(CC) -c help.c $(OPTS)
-+ $(CC) $(CFLAGS) -c help.c $(OPTS)
-
- data.o : data.c includes.h data-proto.h
-- $(CC) -c data.c $(OPTS)
-+ $(CC) $(CFLAGS) -c data.c $(OPTS)
-
- install : $(TARGET)
- chown root dhcp-conf