aboutsummaryrefslogtreecommitdiffstats
path: root/dns/dhid/files
diff options
context:
space:
mode:
authorvs <vs@FreeBSD.org>2005-04-22 21:11:24 +0800
committervs <vs@FreeBSD.org>2005-04-22 21:11:24 +0800
commit0ce801b6bdef3fa28b380ee6b5cad40cc17b0009 (patch)
tree91d82c5df51594936801b0d6d70f96bd710745af /dns/dhid/files
parent15db21f9c4f14255208c517f5f294262391692df (diff)
downloadfreebsd-ports-gnome-0ce801b6bdef3fa28b380ee6b5cad40cc17b0009.tar.gz
freebsd-ports-gnome-0ce801b6bdef3fa28b380ee6b5cad40cc17b0009.tar.zst
freebsd-ports-gnome-0ce801b6bdef3fa28b380ee6b5cad40cc17b0009.zip
- Use MAKE_ARGS
- Sanitize >>${TMPPLIST}-usage
Diffstat (limited to 'dns/dhid/files')
-rw-r--r--dns/dhid/files/patch-ab26
1 files changed, 0 insertions, 26 deletions
diff --git a/dns/dhid/files/patch-ab b/dns/dhid/files/patch-ab
deleted file mode 100644
index be0e9576fdec..000000000000
--- a/dns/dhid/files/patch-ab
+++ /dev/null
@@ -1,26 +0,0 @@
---- Makefile.orig Wed Sep 12 12:12:02 2001
-+++ Makefile Sat Feb 19 21:19:11 2005
-@@ -29,8 +29,8 @@
-
- # Add -lnsl and -lsocket to LIBS in SysV systems
- #
--CFLAGS=-I/usr/local/include -DQRC=1 -Wall
--LFLAGS=-L/usr/local/lib
-+CFLAGS=-I__PREFIX__/include -DQRC=1 -Wall
-+#LFLAGS=-L/usr/local/lib
- LIBS=-lgmp
-
- # Use these and comment the above if you wish to compile dhid without
-@@ -46,10 +46,10 @@
- all: dhid genkeys
-
- dhid: conf.o network.o main.o
-- $(CC) $(LFLAGS) -o dhid conf.o network.o main.o $(LIBS)
-+ $(CC) $(LDFLAGS) -o dhid conf.o network.o main.o $(LIBS)
-
- genkeys: genkeys.c
-- $(CC) $(CFLAGS) $(LFLAGS) -o genkeys genkeys.c $(LIBS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o genkeys genkeys.c $(LIBS)
-
- main.o: dhid.h main.c
- $(CC) $(CFLAGS) -c main.c