diff options
author | jmmv <jmmv@pkgsrc.org> | 2002-12-17 19:43:39 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2002-12-17 19:43:39 +0000 |
commit | 2fd9e4926a52c65e45fe52e8a7fad1f6f3f80235 (patch) | |
tree | 30c6810429f72ec8b834a4097d7ab3da57e3ff01 /sysutils/fam/patches/patch-au | |
parent | 418b2eba2e4a93db609d0e9498c36f6c278b2bfb (diff) | |
download | pkgsrc-2fd9e4926a52c65e45fe52e8a7fad1f6f3f80235.tar.gz |
Update fam to 2.6.9. Changes since 2.6.7:
fam-2.6.9
added idle_timeout and nfs_polling_interval options to fam.conf.
[joup@bigfoot.com, wardle@sgi.com] (wardle@sgi.com)
use daemon() as an alternative to _daemonize() to background the
fam process if it is available.
[wardle@sgi.com] (wardle@sgi.com)
allow for different socket structure on FreeBSD and other small
changes to assist FreeBSD build.
[daverufino@btinternet.com, ports@geeksrus.net] (wardle@sgi.com)
fam-2.6.8
#include some standard header files to help build on FreeBSD.
(wardle@sgi.com)
improved group handling from IRIX.
(wardle@sgi.com)
untrusted user's GID is set to NOGROUP if getgrmember() gave FAM
an invalid or inconsistent GID.
(wardle@sgi.com)
should now handle strerror returning null.
(wardle@sgi.com)
initalize libtool earlier in the configure process to avoid binaries
being created with a .C extension on some systems.
[alexl@redhat.com] (wardle@sgi.com)
added libstdc++ to linker flags to make libfam always build as a
C++ library.
(wardle@sgi.com)
added CLEANFILES make target.
(wardle@sgi.com)
/etc/mtab (or equivalent) is now opened read-only.
(wardle@sgi.com)
Approved by wiz.
Diffstat (limited to 'sysutils/fam/patches/patch-au')
-rw-r--r-- | sysutils/fam/patches/patch-au | 52 |
1 files changed, 23 insertions, 29 deletions
diff --git a/sysutils/fam/patches/patch-au b/sysutils/fam/patches/patch-au index 3233423fe3d..fefc088e4f8 100644 --- a/sysutils/fam/patches/patch-au +++ b/sysutils/fam/patches/patch-au @@ -1,35 +1,29 @@ -$NetBSD: patch-au,v 1.2 2002/08/25 19:23:23 jlam Exp $ +$NetBSD: patch-au,v 1.3 2002/12/17 19:43:43 jmmv Exp $ ---- fam/Makefile.in.orig Fri Dec 21 10:00:16 2001 +--- fam/Makefile.in.orig Tue Jul 16 08:56:45 2002 +++ fam/Makefile.in -@@ -99,7 +99,7 @@ - bin_PROGRAMS = fam - sysconf_DATA = fam.conf +@@ -28,7 +28,7 @@ bindir = @bindir@ + sbindir = @sbindir@ + libexecdir = @libexecdir@ + datadir = @datadir@ +-sysconfdir = @sysconfdir@ ++sysconfdir = @datadir@/examples/@PACKAGE@ + sharedstatedir = @sharedstatedir@ + localstatedir = @localstatedir@ + libdir = @libdir@ +@@ -173,6 +173,7 @@ fam_SOURCES = \ + main.c++ \ + timeval.c++ \ + timeval.h \ ++ mntent_compat.c++ \ + @IMON_FUNCS@.c++ --fam_SOURCES = Activity.c++ Activity.h Client.c++ Client.h ClientConnection.c++ ClientConnection.h ClientInterest.c++ ClientInterest.h Cred.c++ Cred.h DirEntry.c++ DirEntry.h Directory.c++ Directory.h DirectoryScanner.c++ DirectoryScanner.h Event.c++ Event.h File.c++ File.h FileSystem.c++ FileSystem.h FileSystemTable.c++ FileSystemTable.h IMon.c++ IMon.h Interest.c++ Interest.h InternalClient.c++ InternalClient.h Listener.c++ Listener.h LocalClient.c++ LocalClient.h LocalFileSystem.c++ LocalFileSystem.h Log.c++ Log.h MxClient.c++ MxClient.h NFSFileSystem.c++ NFSFileSystem.h NetConnection.c++ NetConnection.h Pollster.c++ Pollster.h Request.h RequestMap.h RPC_TCP_Connector.c++ RPC_TCP_Connector.h Scanner.c++ Scanner.h Scheduler.c++ Scheduler.h ServerConnection.c++ ServerConnection.h ServerHost.c++ ServerHost.h ServerHostRef.c++ ServerHostRef.h Set.h SmallTable.h StringTable.h TCP_Client.c++ TCP_Client.h main.c++ timeval.c++ timeval.h @IMON_FUNCS@.c++ -+fam_SOURCES = Activity.c++ Activity.h Client.c++ Client.h ClientConnection.c++ ClientConnection.h ClientInterest.c++ ClientInterest.h Cred.c++ Cred.h DirEntry.c++ DirEntry.h Directory.c++ Directory.h DirectoryScanner.c++ DirectoryScanner.h Event.c++ Event.h File.c++ File.h FileSystem.c++ FileSystem.h FileSystemTable.c++ FileSystemTable.h IMon.c++ IMon.h Interest.c++ Interest.h InternalClient.c++ InternalClient.h Listener.c++ Listener.h LocalClient.c++ LocalClient.h LocalFileSystem.c++ LocalFileSystem.h Log.c++ Log.h MxClient.c++ MxClient.h NFSFileSystem.c++ NFSFileSystem.h NetConnection.c++ NetConnection.h Pollster.c++ Pollster.h Request.h RequestMap.h RPC_TCP_Connector.c++ RPC_TCP_Connector.h Scanner.c++ Scanner.h Scheduler.c++ Scheduler.h ServerConnection.c++ ServerConnection.h ServerHost.c++ ServerHost.h ServerHostRef.c++ ServerHostRef.h Set.h SmallTable.h StringTable.h TCP_Client.c++ TCP_Client.h main.c++ timeval.c++ timeval.h mntent_compat.c++ @IMON_FUNCS@.c++ - - EXTRA_fam_SOURCES = IMonIrix.c++ IMonLinux.c++ IMonNone.c++ -@@ -123,7 +123,7 @@ - Listener.o LocalClient.o LocalFileSystem.o Log.o MxClient.o \ - NFSFileSystem.o NetConnection.o Pollster.o RPC_TCP_Connector.o \ - Scanner.o Scheduler.o ServerConnection.o ServerHost.o ServerHostRef.o \ --TCP_Client.o main.o timeval.o @IMON_FUNCS@.o -+TCP_Client.o main.o timeval.o mntent_compat.o @IMON_FUNCS@.o +@@ -201,6 +202,7 @@ NFSFileSystem.$(OBJEXT) NetConnection.$( + RPC_TCP_Connector.$(OBJEXT) Scanner.$(OBJEXT) Scheduler.$(OBJEXT) \ + ServerConnection.$(OBJEXT) ServerHost.$(OBJEXT) ServerHostRef.$(OBJEXT) \ + TCP_Client.$(OBJEXT) main.$(OBJEXT) timeval.$(OBJEXT) \ ++mntent_compat.$(OBJEXT) \ + @IMON_FUNCS@.$(OBJEXT) fam_DEPENDENCIES = $(top_srcdir)/support/libsupport.a fam_LDFLAGS = - CXXFLAGS = @CXXFLAGS@ -@@ -237,10 +237,10 @@ - @list='$(sysconf_DATA)'; for p in $$list; do \ - if test -f $(srcdir)/$$p; then \ - echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p"; \ -- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p; \ -+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p.sample; \ - else if test -f $$p; then \ - echo " $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p"; \ -- $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p; \ -+ $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p.sample; \ - fi; fi; \ - done - |