From 2c9bb8df6983d00c43a0c525c2135fc3a77545ad Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Thu, 20 Mar 2003 23:12:27 +0000 Subject: [PATCH] * minor new port: sparc64-unknown-linux-suse7.3. * minor new port: i386-unknown-freebsd5.0. * configure.in: detect nfsclient/nfsargs.h. * conf/nfs_prot/nfs_prot_freebsd3.h: include , needed in FreeBSD 5.0. --- .cvsignore | 2 ++ ChangeLog | 13 +++++++++++++ INSTALL | 7 +++++-- NEWS | 5 ++++- conf/nfs_prot/nfs_prot_freebsd3.h | 7 ++++++- configure.in | 3 ++- doc/am-utils.texi | 18 +++++++++++++++++- 7 files changed, 49 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 925eb10..1997719 100644 --- a/.cvsignore +++ b/.cvsignore @@ -110,3 +110,5 @@ A.i386-unknown-freebsd4.5 A.i386-unknown-openbsd2.9 A.i386-pc-linux-rh7.3 configure.new +A.sparc64-unknown-linux-suse7.3 +autom4te-2.53.cache diff --git a/ChangeLog b/ChangeLog index 97c00e9..ac08df9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2003-03-20 Erez Zadok + + * minor new port: sparc64-unknown-linux-suse7.3. + +2003-03-20 Erez Zadok + + * minor new port: i386-unknown-freebsd5.0. + + * configure.in: detect nfsclient/nfsargs.h. + + * conf/nfs_prot/nfs_prot_freebsd3.h: include + , needed in FreeBSD 5.0. + 2003-03-15 Erez Zadok * amd/amd.8, amd/amd.8, fixmount/fixmount.8, hlfsd/hlfsd.8, diff --git a/INSTALL b/INSTALL index 26881b0..20ef94a 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,3 @@ -# -*- text -*- am-utils 6.0 compatibility list For each system, list if it autoconfigures, compiles, or runs. Fill in @@ -71,6 +70,9 @@ i386-unknown-openbsd2.5 ezk[0] ezk ezk ezk i486-ncr-sysv4.3.03 ezk[0] ezk ezk ia64-hp-hpux11.20 ezk[0] ezk ezk ezk ia64-unknown-linux-rh7.1 ezk[0] ezk ezk ezk +ia64-unknown-linux-rh7.2 ezk[0] ezk ezk ezk +ia64-unknown-linux-rh2.1AS ezk[0] ezk ezk ezk +ia64-unknown-linux-rh2.1AW ezk[0] ezk ezk ezk m68k-hp-hpux9.00 ezk[0,4]ezk[4] nrh/ezk m68k-next-nextstep3 ezk[0] ezk ezk ezk[X] m68k-sun-sunos4.1.1 ezk[0] ezk ezk[X] @@ -105,6 +107,7 @@ sparc-unknown-linux-rh6.2 ion ion ion ion sparc-unknown-netbsd1.2E ezk[0] ezk ezk sparc-unknown-netbsd1.2G ezk[0] ezk ezk sparc64-unknown-linux-rh6.2 ion ion ion ion +sparc64-unknown-linux-suse7.3 ezk[0] ezk ezk ezk EMAIL ID LEGEND: @@ -123,7 +126,7 @@ wpaul: Bill Paul FOOTNOTES: [0] These entries were tested with older 6.0 releases, but not with the -latest version. They probably still work, however. + latest version. They probably still work, however. [1] If compiling with cc on Irix 6, then use diff --git a/NEWS b/NEWS index 7b7b6bb..edee0f2 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ *** Notes specific to am-utils version 6.0.10-pre: -XXX +- minor new ports: + ia64-unknown-linux-rh2.1AS (Red Hat Itanium Advanced Server) + i386-unknown-freebsd5.0 (5.0-RELEASE) + sparc64-unknown-linux-suse7.3 *** Notes specific to am-utils version 6.0.9: diff --git a/conf/nfs_prot/nfs_prot_freebsd3.h b/conf/nfs_prot/nfs_prot_freebsd3.h index 51c13af..81ec721 100644 --- a/conf/nfs_prot/nfs_prot_freebsd3.h +++ b/conf/nfs_prot/nfs_prot_freebsd3.h @@ -38,7 +38,7 @@ * * %W% (Berkeley) %G% * - * $Id: nfs_prot_freebsd3.h,v 1.5.2.4 2002/12/27 22:44:54 ezk Exp $ + * $Id: nfs_prot_freebsd3.h,v 1.5.2.5 2003/03/20 23:12:30 ezk Exp $ * */ @@ -58,6 +58,11 @@ # include #endif /* HAVE_UFS_UFS_UFSMOUNT_H */ +/* nfsclient/nfsargs.h was introduced in FreeBSD 5.0, and is needed */ +#ifdef HAVE_NFSCLIENT_NFSARGS_H +# include +#endif /* HAVE_NFSCLIENT_NFSARGS_H */ + /* * MACROS: */ diff --git a/configure.in b/configure.in index f9332be..969aca4 100644 --- a/configure.in +++ b/configure.in @@ -53,7 +53,7 @@ AH_BOTTOM([ dnl dnl AC_CONFIG_AUX_DIR(m4) AC_PREREQ(2.52) -AC_REVISION($Revision: 1.1.2.37 $) +AC_REVISION($Revision: 1.1.2.38 $) AC_COPYRIGHT([Copyright (c) 1997-2003 Erez Zadok]) dnl find out system type AC_MSG_NOTICE(*** SYSTEM TYPES ***) @@ -439,6 +439,7 @@ AC_CHECK_HEADERS( \ nfs/nfsv2.h \ nfs/pathconf.h \ nfs/rpcv2.h \ + nfsclient/nfsargs.h \ rpc/auth_des.h \ rpc/pmap_clnt.h \ rpc/pmap_prot.h \ diff --git a/doc/am-utils.texi b/doc/am-utils.texi index 459f1e7..536b079 100644 --- a/doc/am-utils.texi +++ b/doc/am-utils.texi @@ -38,7 +38,7 @@ @c @c %W% (Berkeley) %G% @c -@c $Id: am-utils.texi,v 1.21.2.26 2002/12/27 22:45:02 ezk Exp $ +@c $Id: am-utils.texi,v 1.21.2.27 2003/03/20 23:12:30 ezk Exp $ @c @setfilename am-utils.info @@ -974,10 +974,22 @@ features. @c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} @tab yes @tab yes @tab yes @tab yes @tab yes @tab ? +@item @b{ia64-unknown-linux-rh2.1AS} +@c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} +@tab yes @tab yes @tab yes @tab yes @tab yes @tab yes + +@item @b{ia64-unknown-linux-rh2.1AW} +@c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} +@tab yes @tab yes @tab yes @tab yes @tab yes @tab yes + @item @b{ia64-unknown-linux-rh7.1} @c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} @tab yes @tab yes @tab yes @tab yes @tab yes @tab yes +@item @b{ia64-unknown-linux-rh7.2} +@c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} +@tab yes @tab yes @tab yes @tab yes @tab yes @tab yes + @item @b{m68k-hp-hpux9.00} @c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} @tab yes @tab yes @tab yes @tab n/a @tab ? @tab ? @@ -1110,6 +1122,10 @@ features. @c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} @tab yes @tab yes @tab yes @tab n/a @tab yes @tab ? +@item @b{sparc64-unknown-linux-suse7.3} +@c {Config} {Compile} {Amd} {NFS V.3} {Shlib} {Hlfsd} +@tab yes @tab yes @tab yes @tab yes @tab yes @tab ? + @end multitable See the @file{INSTALL} in the distribution for more specific details on -- 2.43.0