diff options
author | Will Andrews <will@FreeBSD.org> | 2000-04-02 05:37:29 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-04-02 05:37:29 +0000 |
commit | 63eef36fd6230244ab5eda1670ba2bede924dac0 (patch) | |
tree | e732292ec694e49eed121a217ff8e658a70e79d3 /dns/adns/files/patch-ab | |
parent | Ooops, I forgot to add MAN8 for oidentd.8 after removing it from the (diff) |
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
Notes
Notes:
svn path=/head/; revision=27277
Diffstat (limited to 'dns/adns/files/patch-ab')
-rw-r--r-- | dns/adns/files/patch-ab | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dns/adns/files/patch-ab b/dns/adns/files/patch-ab new file mode 100644 index 000000000000..fbda698f88cc --- /dev/null +++ b/dns/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 $@ |