aboutsummaryrefslogtreecommitdiffstats
path: root/dns/rbldnsd/files
diff options
context:
space:
mode:
authorkrion <krion@FreeBSD.org>2004-01-20 02:40:30 +0800
committerkrion <krion@FreeBSD.org>2004-01-20 02:40:30 +0800
commitfe974817002cd9067e4e4d44ea63ff74f742d0e8 (patch)
tree96d75395fc26529e5a9c08a7f9813ff69e8ccd19 /dns/rbldnsd/files
parent38538634ef6c0d6a41b97fe46d8bddb506f49213 (diff)
downloadfreebsd-ports-gnome-fe974817002cd9067e4e4d44ea63ff74f742d0e8.tar.gz
freebsd-ports-gnome-fe974817002cd9067e4e4d44ea63ff74f742d0e8.tar.zst
freebsd-ports-gnome-fe974817002cd9067e4e4d44ea63ff74f742d0e8.zip
- upgraded to current version, which finally uses
configure. - added the *proper* MASTER_SITES back in, - removed patch file on old Makefile (delete it), - use DOCSDIR PR: 61569 Submitted by: maintainer
Diffstat (limited to 'dns/rbldnsd/files')
-rw-r--r--dns/rbldnsd/files/patch-aa38
1 files changed, 0 insertions, 38 deletions
diff --git a/dns/rbldnsd/files/patch-aa b/dns/rbldnsd/files/patch-aa
deleted file mode 100644
index 2fcbfcd29345..000000000000
--- a/dns/rbldnsd/files/patch-aa
+++ /dev/null
@@ -1,38 +0,0 @@
---- Makefile.orig Fri Jun 13 05:14:45 2003
-+++ Makefile Fri Jun 13 05:19:41 2003
-@@ -4,26 +4,28 @@
- # Makefile for rbldnsd
-
--CC = cc
--CFLAGS = -O
-+CC ?= cc
-+CFLAGS += -O
- LD = $(CC)
--LDFLAGS = $(CFLAGS)
-+LDFLAGS += $(CFLAGS)
- AR = ar
- ARFLAGS = rv
- RANLIB = :
--SHELL = /bin/sh
--AWK = awk
-+SHELL = ${SH}
-+AWK ?= awk
-
- # Disable statistic counters
- #DEFS = -DNOSTATS
- # Disable memory info logging (mallinfo)
--#DEFS = -DNOMEMINFO
-+DEFS += -DNOMEMINFO
- # Disable printing zone (re)load time using utimes()
- #DEFS = -DNOTIMES
- # If your system lacks <stdint.h> header but uint32_t is in sys/types.h
--#DEFS = -DNOSTDINT_H
-+DEFS += -DNOSTDINT_H
- # If you don't want/have IPv6 support (transport only)
--#DEFS = -DNOIPv6
-+.if !defined(WITH_IPV6)
-+DEFS += -DNOIPv6
-+.endif
- #
- # For FreeBSD 4, use DEFS="-DNOMEMINFO -DNOSTDINT_H"
- # For Solaris, use DEFS="-DNOMEMINFO -DNOSTDINT_H -DNOIPv6"