* minor new port: i386-pc-linux-fc4 (gcc4 catches more bugs).
authorErez Zadok <ezk@cs.sunysb.edu>
Wed, 15 Jun 2005 23:09:56 +0000 (23:09 +0000)
committerErez Zadok <ezk@cs.sunysb.edu>
Wed, 15 Jun 2005 23:09:56 +0000 (23:09 +0000)
* m4/macros/type_recvfrom_fromlen.m4: linux systems use unsigned
int as the type of recvfrom()'s 6th argument.

* m4/macros/type_yp_order_outorder.m4: linux systems use unsigned
int as the type of yp_order()'s 3rd argument.

.cvsignore
ChangeLog
NEWS
configure.in
m4/macros/type_recvfrom_fromlen.m4
m4/macros/type_yp_order_outorder.m4

index 239664bbe59027161ba0189387dc5dc56f9af8dd..90e9b927a7bb8929815bebef205febfc94a13343 100644 (file)
@@ -154,3 +154,4 @@ A.alpha-unknown-linux-gentoo1.4.16
 A.alphaev56-dec-osf4.0f
 A.mips-unknown-linux-gentoo1.4.16
 A.sparc64-unknown-linux-gentoo1.4.16
+A.i386-pc-linux-fc4
index cdebe56cf0e78972bad62ec11c948f58c2c95cff..2f5708e761e4fd76964067bc768ebef2cad30af9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-06-15  Erez Zadok  <ezk@cs.sunysb.edu>
+
+       * minor new port: i386-pc-linux-fc4 (gcc4 catches more bugs).
+
+       * m4/macros/type_recvfrom_fromlen.m4: linux systems use unsigned
+       int as the type of recvfrom()'s 6th argument.
+
+       * m4/macros/type_yp_order_outorder.m4: linux systems use unsigned
+       int as the type of yp_order()'s 3rd argument.
+
 2005-06-15  Erez Zadok  <ezk@cs.sunysb.edu>
 
        * scripts/amd.conf-sample (map_type): typo, said mount_type
diff --git a/NEWS b/NEWS
index 7c3e118a663ceaa78fba8804f57eac4ed99a0d86..a4eb11c30d68c38d8d40fb663b06ab95a8d06351 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+*** Notes specific to am-utils version 6.1.1-pre
+
+* minor new ports:
+       i386-pc-linux-fc4
+
 *** Notes specific to am-utils version 6.1
 
 - bugs fixed:
index 92e6d811e214d547b2cb4d4b0fbe295880309b4a..15a5517bc4d15a34aa7c64a0ef7fe2eb5874e941 100644 (file)
@@ -15,7 +15,7 @@ dnl new init style: PACKAGE, VERSION, BUG-REPORTING-ADDRESS
 dnl     UPDATE LIBAMU VERSION BEFORE OFFICIAL RELEASE!!!
 dnl   UPDATE LIBAMU VERSION BEFORE OFFICIAL RELEASE!!!
 dnl UPDATE LIBAMU VERSION BEFORE OFFICIAL RELEASE!!!
-AC_INIT([am-utils],[6.1],[am-utils@am-utils.org])
+AC_INIT([am-utils],[6.1.1-pre],[am-utils@am-utils.org])
 dnl UPDATE LIBAMU VERSION BEFORE OFFICIAL RELEASE!!!
 dnl   UPDATE LIBAMU VERSION BEFORE OFFICIAL RELEASE!!!
 dnl     UPDATE LIBAMU VERSION BEFORE OFFICIAL RELEASE!!!
@@ -59,7 +59,7 @@ AH_BOTTOM([
 dnl
 dnl AC_CONFIG_AUX_DIR(m4)
 AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.95 $)
+AC_REVISION($Revision: 1.96 $)
 AC_COPYRIGHT([Copyright (c) 1997-2005 Erez Zadok])
 dnl find out system type
 AC_MSG_NOTICE(*** SYSTEM TYPES ***)
index 660e0b0bc47f3ab9461d6163348d857c7ae9ab84..01f653ac4b9e10a47388bda25c5a891acc09db9a 100644 (file)
@@ -7,6 +7,8 @@ ac_cv_recvfrom_fromlen,
 [
 # select the correct type
 case "${host_os}" in
+       linux* )
+               ac_cv_recvfrom_fromlen="unsigned int" ;;
        aix[[1-3]]* )
                ac_cv_recvfrom_fromlen="int" ;;
        aix* )
index 1796e8868b533efb742cbb2b924b3bad8de2af39..fefeced8a5419862ab91d427438d8e53dc2f690b 100644 (file)
@@ -11,7 +11,7 @@ case "${host_os}" in
                ac_cv_yp_order_outorder=int ;;
        solaris* | svr4* | sysv4* | sunos* | hpux* | aix* )
                ac_cv_yp_order_outorder="unsigned long" ;;
-       osf* )
+       linux* | osf* )
                # DU4 man page is wrong, headers are right
                ac_cv_yp_order_outorder="unsigned int" ;;
        * )