diff options
author | jlam <jlam@pkgsrc.org> | 2001-12-14 22:30:07 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-12-14 22:30:07 +0000 |
commit | 11e44565d5ea339d08c2cb539de92f667661bb17 (patch) | |
tree | c4d011dccfb86f775ef2fa76b1272e0d87609163 /net/openslp/patches | |
parent | d71f0b8699929afec8dea529735501969b3154e0 (diff) | |
download | pkgsrc-11e44565d5ea339d08c2cb539de92f667661bb17.tar.gz |
Update net/openslp to 1.0.6. This package now uses the general INSTALL
scripts and honors ${PKG_SYSCONFDIR}. Changes from version 1.0.2 include:
* bug fixes
* set FRESH flag for registrations; OpenSLP ignores this flag, but other DA
implementations like K&A SLP do not.
* Minor changes to the way that settings from /etc/slp.conf affect active and
passive discovery.
* Changed declaration and definition for strncasecmp and strcasecmp so that
there is only one place for them in slp_compare.c and slp_compare.h
* Honor scopes in SrvRqsts for the special "service:directory-agent" type
* Added code to use IP address in agent url for those operating systems where
gethostname() does not return a fully qualified domain name (FQDN).
* Added code to log parse errors and dump bad messages to the log
* Fixed reconnect code to be able to interoperate with inefficient DAs that
close the stream after each srvreg/srvack exchange. The Mac OS/X DA is
reported to have this problem
* Removed calls that (sort of) enforce service-url checking. This is for the
benefit of AFP's usage of SRVLOC. Developers are now trusted not to
register ambiguous service-urls.
Diffstat (limited to 'net/openslp/patches')
-rw-r--r-- | net/openslp/patches/patch-aa | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/net/openslp/patches/patch-aa b/net/openslp/patches/patch-aa index 0e596002e51..3fb7d8a3af8 100644 --- a/net/openslp/patches/patch-aa +++ b/net/openslp/patches/patch-aa @@ -1,21 +1,25 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/08/18 03:18:44 jlam Exp $ +$NetBSD: patch-aa,v 1.2 2001/12/14 22:30:08 jlam Exp $ ---- Makefile.in.orig Tue Aug 7 13:00:29 2001 -+++ Makefile.in -@@ -333,20 +333,6 @@ +--- Makefile.in.orig Mon Dec 10 12:58:48 2001 ++++ Makefile.in Fri Dec 14 17:11:51 2001 +@@ -333,24 +333,6 @@ install-data-local: - mkdir -p $(DESTDIR)$(sysconfdir) - file=$(DESTDIR)$(sysconfdir)/slp.reg;\ -- if [ -f $$file ]; then cp -f $$file $$file.bak; else true; fi -- cp -f $(srcdir)/etc/slp.reg $(DESTDIR)$(sysconfdir) +- if [ -f $$file ]; then true;\ +- else cp -f $(srcdir)/etc/slp.reg $(DESTDIR)$(sysconfdir);\ +- fi - file=$(DESTDIR)$(sysconfdir)/slp.conf;\ -- if [ -f $$file ]; then cp -f $$file $$file.bak; else true; fi -- cp -f $(srcdir)/etc/slp.conf $(DESTDIR)$(sysconfdir) +- if [ -f $$file ]; then true;\ +- else cp -f $(srcdir)/etc/slp.conf \ +- $(DESTDIR)$(sysconfdir);\ +- fi - file=$(DESTDIR)$(sysconfdir)/slp.spi;\ -- if [ -f $$file ]; then cp -f $$file $$file.bak; else true; fi -- cp -f $(srcdir)/etc/slp.spi $(DESTDIR)$(sysconfdir) +- if [ -f $$file ]; then true;\ +- else cp -f $(srcdir)/etc/slp.spi $(DESTDIR)$(sysconfdir);\ +- fi - rm -rf $(DESTDIR)$(DOC_DIR) - mkdir -p $(DESTDIR)$(DOC_DIR) - cp -r $(srcdir)/doc/* $(DESTDIR)$(DOC_DIR) |