From: Erez Zadok Date: Wed, 7 Sep 2005 23:38:22 +0000 (+0000) Subject: * minor new port: i386-pc-linux-deb3.1. X-Git-Tag: before-clocktime-fixes-61-br~1 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=2d0585bd00f1a242ccd4b09d298c4fd085cbe4e5;p=am-utils-6.0.git * minor new port: i386-pc-linux-deb3.1. * conf/mount/mount_linux.c: If autoconf didn't find any disk-based file system on this system (probably because /proc isn't mounted), then provide some default definition for this file to compile. --- diff --git a/.cvsignore b/.cvsignore index 5686e65..49cd3e2 100644 --- a/.cvsignore +++ b/.cvsignore @@ -157,3 +157,4 @@ A.sparc64-unknown-linux-gentoo1.4.16 A.i386-pc-linux-fc4 A.i386-pc-linux-suse9.3 A.i386-pc-linuxoldld-deb3.1 +A.i386-pc-linux-deb3.1 diff --git a/ChangeLog b/ChangeLog index 0d47536..c95d53d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-09-07 Erez Zadok + + * minor new port: i386-pc-linux-deb3.1. + +2005-09-02 Erez Zadok + + * conf/mount/mount_linux.c: If autoconf didn't find any disk-based + file system on this system (probably because /proc isn't mounted), + then provide some default definition for this file to compile. + 2005-08-27 Erez Zadok * Makefile.am (DISTCLEANFILES): also remove amu_autofs_prot.h, diff --git a/NEWS b/NEWS index 6ae34af..f530cca 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ *** Notes specific to am-utils version 6.1.2-rc1 +- minor new ports: + i386-pc-linux-deb3.1 + - bugs fixed: * minor documentation corrections diff --git a/conf/mount/mount_linux.c b/conf/mount/mount_linux.c index 8ce3b9e..ae42d0b 100644 --- a/conf/mount/mount_linux.c +++ b/conf/mount/mount_linux.c @@ -51,6 +51,14 @@ #include +#ifndef MOUNT_TYPE_UFS +/* + * Autoconf didn't find any disk-based f/s on this system, + * So provide some default definition for this file to compile. + */ +# define MOUNT_TYPE_UFS "no_disk_fs" +#endif /* not MOUNT_TYPE_UFS */ + struct opt_map { const char *opt; /* option name */ int inv; /* true if flag value should be inverted */