summaryrefslogtreecommitdiff
path: root/net-mgmt/dhcpconf/files/patch-aa
diff options
context:
space:
mode:
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