Update to version 1.1.16
This commit is contained in:
parent
b266c16d40
commit
ee95153dc4
@ -1,6 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2002/11/15 20:19:32 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2003/05/04 17:29:56 margarida Exp $
|
||||
|
||||
VERSION= 1.1.06
|
||||
VERSION= 1.1.16
|
||||
|
||||
MASTER_SITES= ${HOMEPAGE}/download/1.1/ \
|
||||
http://maradns.3va.net/download/1.1/ \
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (maradns-1.1.06.tar.bz2) = 5bba687af4bdc8aec3474852598c621e
|
||||
RMD160 (maradns-1.1.06.tar.bz2) = 40351495cfc31512581ba8aa1b39339514283d5e
|
||||
SHA1 (maradns-1.1.06.tar.bz2) = b1a272725af3cf6a2029e2b5c7331d146339a24b
|
||||
MD5 (maradns-1.1.16.tar.bz2) = 17738068b413cbbb9c2e63274aa9d1ee
|
||||
RMD160 (maradns-1.1.16.tar.bz2) = 30b16cc3da6f145a47531549333dfeee42aa4a26
|
||||
SHA1 (maradns-1.1.16.tar.bz2) = 05b8737e50b0fb9d8f35d0659ea855e047bf777d
|
||||
|
@ -1,7 +1,30 @@
|
||||
$OpenBSD: patch-build_install_sh,v 1.1.1.1 2002/11/15 20:19:32 brad Exp $
|
||||
--- build/install.sh.orig Sun Jun 16 05:19:26 2002
|
||||
+++ build/install.sh Fri Nov 15 02:35:43 2002
|
||||
@@ -108,44 +108,4 @@ cd ..
|
||||
$OpenBSD: patch-build_install_sh,v 1.2 2003/05/04 17:29:57 margarida Exp $
|
||||
--- build/install.sh.orig Fri Jan 10 21:32:09 2003
|
||||
+++ build/install.sh Sun May 4 18:17:47 2003
|
||||
@@ -86,6 +86,13 @@ if [ -f $SBIN/zoneserver ] ; then
|
||||
fi
|
||||
cp zoneserver $SBIN
|
||||
|
||||
+# Install duende
|
||||
+cd $TOPLEVEL/tools
|
||||
+if [ -f $BIN/duende ] ; then
|
||||
+ rm $BIN/duende
|
||||
+fi
|
||||
+cp duende $BIN
|
||||
+
|
||||
# Install the askmara binary
|
||||
cd $TOPLEVEL/tools
|
||||
if [ -f $BIN/askmara ] ; then
|
||||
@@ -100,7 +107,7 @@ else
|
||||
cd $TOPLEVEL/doc/en/man
|
||||
fi
|
||||
cp askmara.1 getzone.1 $MAN1
|
||||
-cp maradns.8 zoneserver.8 $MAN8
|
||||
+cp duende.8 maradns.8 zoneserver.8 $MAN8
|
||||
cp csv1.5 mararc.5 $MAN5
|
||||
|
||||
# Place all the documents in $DOCS
|
||||
@@ -108,44 +115,4 @@ cd ..
|
||||
mkdir $DOCS > /dev/null 2>&1
|
||||
cp -r * $DOCS
|
||||
cd $TOPLEVEL
|
||||
|
@ -1,10 +0,0 @@
|
||||
$OpenBSD: patch-server_Makefile,v 1.1.1.1 2002/11/15 20:19:32 brad Exp $
|
||||
--- server/Makefile.orig Wed Nov 13 16:50:03 2002
|
||||
+++ server/Makefile Wed Nov 13 16:50:36 2002
|
||||
@@ -35,5 +35,5 @@ timestamp.o: timestamp.c MaraDNS_locale.
|
||||
$(CC) -c $(FLAGS) -o timestamp.o timestamp.c
|
||||
|
||||
maradns: MaraDNS.c $(OBJECTS) MaraDNS_locale.h
|
||||
- $(CC) $(FLAGS) -DVERSION=\"$(VERSION)\" -DCOMPILED=\"$(COMPILED)\" -o maradns MaraDNS.c $(OBJECTS) -lpthread
|
||||
+ $(CC) $(FLAGS) -DVERSION=\"$(VERSION)\" -DCOMPILED=\"$(COMPILED)\" -o maradns MaraDNS.c $(OBJECTS) -pthread
|
||||
|
@ -5,15 +5,16 @@ Features:
|
||||
* Security-aware programming.
|
||||
A DNS server needs to be secure.
|
||||
There's a number of security features in the code, including:
|
||||
1. The code uses a special string library which is resistant
|
||||
to buffer overflows.
|
||||
2. The code, if started as root, mandates running as an
|
||||
unprivileged user in a chroot() jail.
|
||||
1. The code uses a special string library which is
|
||||
resistent to buffer overflows.
|
||||
2. The code, if started as root, mandates running as
|
||||
an unprivileged user in a chroot() jail.
|
||||
* Open-Source.
|
||||
This DNS server is BSD licensed code.
|
||||
There are no restrictions attached to this code.
|
||||
* Simplicity.
|
||||
This DNS server has the minimum number of features needed to correctly
|
||||
act as an authoritative and/or recursive name server.
|
||||
This DNS server has the minimum number of features needed
|
||||
to correctly act as an authoritative and/or recursive
|
||||
name server.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
||||
|
@ -1,11 +1,12 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2002/11/15 20:19:32 brad Exp $
|
||||
@pkgcfl maradns-1.0.*
|
||||
@comment $OpenBSD: PLIST,v 1.2 2003/05/04 17:29:57 margarida Exp $
|
||||
bin/askmara
|
||||
bin/duende
|
||||
bin/getzone
|
||||
man/man1/askmara.1
|
||||
man/man1/getzone.1
|
||||
man/man5/csv1.5
|
||||
man/man5/mararc.5
|
||||
man/man8/duende.8
|
||||
man/man8/maradns.8
|
||||
man/man8/zoneserver.8
|
||||
sbin/maradns
|
||||
@ -28,6 +29,7 @@ share/doc/maradns-devel/files.txt
|
||||
share/doc/maradns-devel/logfile
|
||||
share/doc/maradns-devel/man/askmara.1
|
||||
share/doc/maradns-devel/man/csv1.5
|
||||
share/doc/maradns-devel/man/duende.8
|
||||
share/doc/maradns-devel/man/getzone.1
|
||||
share/doc/maradns-devel/man/make.postscript
|
||||
share/doc/maradns-devel/man/maradns.8
|
||||
@ -95,7 +97,6 @@ share/doc/maradns-devel/misc/man_macros/example_manpage.1
|
||||
share/doc/maradns-devel/misc/man_macros/man.macros
|
||||
share/doc/maradns-devel/misc/man_macros/man.macros.7
|
||||
share/doc/maradns-devel/misc/multiple.qdcount
|
||||
share/doc/maradns-devel/misc/old.changelog
|
||||
share/doc/maradns-devel/misc/private_rrs.abw
|
||||
share/doc/maradns-devel/misc/private_rrs.html
|
||||
share/doc/maradns-devel/misc/propagation.txt
|
||||
@ -127,6 +128,7 @@ share/doc/maradns-devel/source/credits.embed
|
||||
share/doc/maradns-devel/source/csv1.ej
|
||||
share/doc/maradns-devel/source/data_structures.ej
|
||||
share/doc/maradns-devel/source/download.ej
|
||||
share/doc/maradns-devel/source/duende.ej
|
||||
share/doc/maradns-devel/source/ej.doc.format
|
||||
share/doc/maradns-devel/source/ej.template
|
||||
share/doc/maradns-devel/source/example_auth_mararc
|
||||
|
Loading…
x
Reference in New Issue
Block a user