* minor new port: i386-pc-linux-deb3.1.
authorErez Zadok <ezk@cs.sunysb.edu>
Wed, 7 Sep 2005 23:39:30 +0000 (23:39 +0000)
committerErez Zadok <ezk@cs.sunysb.edu>
Wed, 7 Sep 2005 23:39:30 +0000 (23:39 +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 c2c6bef9cf3c4bcb397eb2d1546fe0f4b4432592..8eee0cc0aa3996cfed452410de93d489bde7f1cb 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-28  Daniel P. Ottavio  <dottavio@ic.sunysb.edu>
 
        * amd/sun_map.c (sun_entry2amd) : Wipe out any trailing white
@@ -10,7 +20,7 @@
        * amd/mapc.c : oops, reverting bad changes
 
        * amd/sun_map_parse.y : oops, reverting bad changes
-       
+
 2005-08-27  Erez Zadok  <ezk@cs.sunysb.edu>
 
        * libamu/xutil.c: amd_program_number is a u_long now.
diff --git a/NEWS b/NEWS
index 4962181ddbae5c18575b3ccc85c833d3b5d9c56f..af23bab7fd8e661628554cb536ed7fd37b3347d5 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
 *** Notes specific to am-utils version 6.2a1
 
+- minor new ports:
+       i386-pc-linux-deb3.1
+
 XXX: Dan, document sun_map_syntax flag in more detail in am-utils.texi and
 (more briefly) in amd.conf.5.  And in this NEWS file, also briefly.
 
index f7c3639f5c2665a930cb85d490cb7963ea7d4fae..5d9cdefe8e29d74310cf2f1812ca4bb3136c7b0e 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 */