From ec12872aad0dc71d676c622f047a3211fa397873 Mon Sep 17 00:00:00 2001 From: will Date: Sun, 2 Apr 2000 05:37:29 +0000 Subject: 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 Reviewed by: billf, mharo --- net/adns/files/patch-aa | 11 +++++++++++ net/adns/files/patch-ab | 30 ++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 net/adns/files/patch-aa create mode 100644 net/adns/files/patch-ab (limited to 'net/adns/files') 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 $@ -- cgit v1.1