* minor new port: i386-pc-linux-deb3.1.
authorErez Zadok <ezk@cs.sunysb.edu>
Wed, 7 Sep 2005 23:38:22 +0000 (23:38 +0000)
committerErez Zadok <ezk@cs.sunysb.edu>
Wed, 7 Sep 2005 23:38:22 +0000 (23:38 +0000)
* 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.

.cvsignore
ChangeLog
NEWS
conf/mount/mount_linux.c

index 5686e65146788c0840dbc2affd406b11d06dc634..49cd3e2a1a581fdf5f6915bf73ccc74288b3149d 100644 (file)
@@ -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
index 0d4753627a0d0cb0deabf71e12ddb91757868c18..c95d53dff06f488e40bdeb2a4bdf8f16c3d31ce1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-09-07  Erez Zadok  <ezk@cs.sunysb.edu>
+
+       * minor new port: i386-pc-linux-deb3.1.
+
+2005-09-02  Erez Zadok  <ezk@cs.sunysb.edu>
+
+       * 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  <ezk@cs.sunysb.edu>
 
        * Makefile.am (DISTCLEANFILES): also remove amu_autofs_prot.h,
diff --git a/NEWS b/NEWS
index 6ae34afaa06f7ae8ea8419bb437865cdf1c3a39a..f530cca2e11eba7245d5562af854ef2716ed53ef 100644 (file)
--- 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
 
index 8ce3b9e74e8b5f3d1e045d171f5b8f7a91754e60..ae42d0b6fbfd0bb70c748a1988d5707f890e1923 100644 (file)
 #include <amu.h>
 
 
+#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 */