+2005-06-03 Erez Zadok <ezk@cs.sunysb.edu>
+
+ *******************************************************************
+ *** Released am-utils-6.1-rc7 ***
+ *******************************************************************
+
+ * m4/macros/os_cflags.m4 (CFLAGS): use custom-OS C flags for
+ configuring, not just for building. That way the two phases
+ (configure and compile) are in sync. This fixes getwire() on
+ OSF/1 systems.
+
+ * conf/nfs_prot/nfs_prot_sunos5_8.h: define INADDR_NONE if not
+ defined in system headers.
+
2005-06-01 Erez Zadok <ezk@cs.sunysb.edu>
* libamu/Makefile.am (EXTRA_DIST): remove alloca.c as it's no
mips-unknown-linux-gentoo1.4.16
sparc64-unknown-linux-gentoo1.4.16
+- bugs fixed:
+ * getwire() detects networks correctly on OSF/1
+
*** Notes specific to am-utils version 6.1-rc6
- minor new ports:
* SUCH DAMAGE.
*
*
- * $Id: nfs_prot_sunos5_8.h,v 1.10 2005/01/03 20:56:45 ezk Exp $
+ * $Id: nfs_prot_sunos5_8.h,v 1.11 2005/06/03 14:46:36 ezk Exp $
*
*/
#define AUTOFS_CONFTYPE "ticotsord"
+#ifndef INADDR_NONE
+# define INADDR_NONE ((unsigned long) -1)
+#endif /* INADDR_NONE */
/*
* TYPEDEFS:
esac
])
AMU_CFLAGS="$AMU_CFLAGS $ac_cv_os_cflags"
+# use same flags for configuring, so it matches what we do at compile time
+CFLAGS="$CFLAGS $ac_cv_os_cflags"
+export CFLAGS
])
dnl ======================================================================