diff options
author | will <will@FreeBSD.org> | 2000-04-02 05:37:29 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-04-02 05:37:29 +0000 |
commit | ec12872aad0dc71d676c622f047a3211fa397873 (patch) | |
tree | 619129d20ab0b480bc737bbd5659c07cc079b149 /net/adns/files | |
parent | 6fbf756414a3f2119e7a2cb66e4ed3a799b0ff00 (diff) | |
download | FreeBSD-ports-ec12872aad0dc71d676c622f047a3211fa397873.zip FreeBSD-ports-ec12872aad0dc71d676c622f047a3211fa397873.tar.gz |
Add adns, an asynchronous DNS resolver library that provides a way to do
nslookups in a non-blocking manner. The adns distribution also comes with
some utilities similar to dig, host, nslookup, etc.
The port that I'm importing rips out the ${PORTOBJFORMAT} checking and
also trims the extra stuff in pkg/DESCR, which the original submission
contained.
PR: 17510
Submitted by: Kostya Lukin <lukin@sapa.ivcme.elektra.ru>
Reviewed by: billf, mharo
Diffstat (limited to 'net/adns/files')
-rw-r--r-- | net/adns/files/patch-aa | 11 | ||||
-rw-r--r-- | net/adns/files/patch-ab | 30 |
2 files changed, 41 insertions, 0 deletions
diff --git a/net/adns/files/patch-aa b/net/adns/files/patch-aa new file mode 100644 index 0000000..5dbb8a5 --- /dev/null +++ b/net/adns/files/patch-aa @@ -0,0 +1,11 @@ +--- configure.orig Wed Nov 24 19:57:32 1999 ++++ configure Mon Mar 20 18:35:47 2000 +@@ -1457,7 +1457,7 @@ + + SHLIBFORLINK='libadns.so' + SHLIBSONAME='$(SHLIBFORLINK).$(MAJOR)' +-SHLIBFILE='$(SHLIBSONAME).$(MINOR)' ++SHLIBFILE='$(SHLIBSONAME)' + + SHLIBCC='$(CC) $(CFLAGS) -fpic' + MKSHLIB_1='$(CC) $(LDFLAGS) -shared -Wl,-soname=$(SHLIBSONAME) -o' diff --git a/net/adns/files/patch-ab b/net/adns/files/patch-ab new file mode 100644 index 0000000..fbda698 --- /dev/null +++ b/net/adns/files/patch-ab @@ -0,0 +1,30 @@ +--- dynamic/Makefile.in.orig Fri Oct 15 21:57:50 1999 ++++ dynamic/Makefile.in Mon Mar 20 18:41:21 2000 +@@ -24,7 +24,7 @@ + srcdir= @srcdir@ + VPATH= @srcdir@ + +-TARGETS= $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK) ++TARGETS= $(SHLIBFILE) $(SHLIBFORLINK) + include $(srcdir)/../settings.make + include $(srcdir)/../src/adns.make + +@@ -32,16 +32,12 @@ + + install: + $(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE) +- ln -sf $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME) + + uninstall: +- rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME) ++ rm -f $(lib_dir)/$(SHLIBFILE) + + $(SHLIBFORLINK): +- ln -s $(SHLIBSONAME) $(SHLIBFORLINK) +- +-$(SHLIBSONAME): +- ln -s $(SHLIBFILE) $(SHLIBSONAME) ++ ln -s $(SHLIBFILE) $(SHLIBFORLINK) + + $(SHLIBFILE): $(ALLOBJS) + rm -f $@ |