aboutsummaryrefslogtreecommitdiffstats
path: root/dns/rbldnsd/files
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2003-08-30 08:45:27 +0800
committeredwin <edwin@FreeBSD.org>2003-08-30 08:45:27 +0800
commited39b703edad2a81c34a578a6bf40a0c155fa803 (patch)
tree3a55bd8394f34a6ed1815d3b5a8d53ce08e5f19e /dns/rbldnsd/files
parent604c683923a3ac9fb1eced680a7baffe537f0960 (diff)
downloadfreebsd-ports-gnome-ed39b703edad2a81c34a578a6bf40a0c155fa803.tar.gz
freebsd-ports-gnome-ed39b703edad2a81c34a578a6bf40a0c155fa803.tar.zst
freebsd-ports-gnome-ed39b703edad2a81c34a578a6bf40a0c155fa803.zip
New port: net/rbldnsd - small fast DNS server for DNSBL zones
A very small and fast DNS server made especially for DNSBL zones. Inspired by Dan J Bernstein's rbldns from djbdns, but entirely original (and faster and more featureful). PR: ports/53274 Submitted by: Paul Chvostek <paul+fbsd@it.ca>
Diffstat (limited to 'dns/rbldnsd/files')
-rw-r--r--dns/rbldnsd/files/patch-aa38
1 files changed, 38 insertions, 0 deletions
diff --git a/dns/rbldnsd/files/patch-aa b/dns/rbldnsd/files/patch-aa
new file mode 100644
index 000000000000..2fcbfcd29345
--- /dev/null
+++ b/dns/rbldnsd/files/patch-aa
@@ -0,0 +1,38 @@
+--- 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"