From: Erez Zadok Date: Wed, 15 Jun 2005 23:09:56 +0000 (+0000) Subject: * minor new port: i386-pc-linux-fc4 (gcc4 catches more bugs). X-Git-Tag: am-utils-6_1_1~48 X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=088417304ce9a93fda3cb7fc2269521c9eeff705;p=am-utils-6.0.git * 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. --- diff --git a/.cvsignore b/.cvsignore index 239664b..90e9b92 100644 --- a/.cvsignore +++ b/.cvsignore @@ -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 diff --git a/ChangeLog b/ChangeLog index cdebe56..2f5708e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-06-15 Erez Zadok + + * 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 * scripts/amd.conf-sample (map_type): typo, said mount_type diff --git a/NEWS b/NEWS index 7c3e118..a4eb11c 100644 --- 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: diff --git a/configure.in b/configure.in index 92e6d81..15a5517 100644 --- a/configure.in +++ b/configure.in @@ -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 ***) diff --git a/m4/macros/type_recvfrom_fromlen.m4 b/m4/macros/type_recvfrom_fromlen.m4 index 660e0b0..01f653a 100644 --- a/m4/macros/type_recvfrom_fromlen.m4 +++ b/m4/macros/type_recvfrom_fromlen.m4 @@ -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* ) diff --git a/m4/macros/type_yp_order_outorder.m4 b/m4/macros/type_yp_order_outorder.m4 index 1796e88..fefeced 100644 --- a/m4/macros/type_yp_order_outorder.m4 +++ b/m4/macros/type_yp_order_outorder.m4 @@ -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" ;; * )