summaryrefslogtreecommitdiff
path: root/net-mgmt/dhcpconf/files/patch-aa
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-10-02 20:55:58 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-10-02 20:55:58 +0000
commit1cf501d6f87b43d3b20cdc1df1942dccff3796bd (patch)
tree888348323662d1fceb365259a7bc1b95e8e8d3f1 /net-mgmt/dhcpconf/files/patch-aa
parent. s:NO_CDROM:RESTRICTED: as neither the distfiles nor the packages should (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_9_0'.release/4.9.0
Notes
Notes: svn path=/head/; revision=90063 svn path=/tags/RELEASE_4_9_0/; revision=90064; tag=release/4.9.0
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