From: Alexander P. <ale...@us...> - 2008-11-05 11:26:50
|
Build Version : T2.5.0.21300 Firebird 2.5 Alpha 1 (writeBuildNum.sh,v 1.21461 2008/11/05 11:26:16 alexpeshkof ) Update of /cvsroot/firebird/firebird2 In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22848 Modified Files: configure.in Log Message: AIX port - use FB_ prefix for alignment constants Index: configure.in =================================================================== RCS file: /cvsroot/firebird/firebird2/configure.in,v retrieving revision 1.297 retrieving revision 1.298 diff -b -U3 -r1.297 -r1.298 --- configure.in 30 Oct 2008 09:14:11 -0000 1.297 +++ configure.in 5 Nov 2008 11:26:14 -0000 1.298 @@ -701,7 +701,7 @@ dnl EKU: try to determine the alignment of long and double -dnl replaces ALIGNMENT and DOUBLE_ALIGN in src/jrd/common.h +dnl replaces FB_ALIGNMENT and FB_DOUBLE_ALIGN in src/jrd/common.h AC_MSG_CHECKING(alignment of long) AC_TRY_RUN([main () { struct s { @@ -711,7 +711,7 @@ exit((int)&((struct s*)0)->b); }], ac_cv_c_alignment=$ac_status, ac_cv_c_alignment=$ac_status) AC_MSG_RESULT($ac_cv_c_alignment) -AC_DEFINE_UNQUOTED(ALIGNMENT, $ac_cv_c_alignment, [Alignment of long]) +AC_DEFINE_UNQUOTED(FB_ALIGNMENT, $ac_cv_c_alignment, [Alignment of long]) AC_MSG_CHECKING(alignment of double) AC_TRY_RUN([main () { @@ -722,7 +722,7 @@ exit((int)&((struct s*)0)->b); }], ac_cv_c_double_align=$ac_status, ac_cv_c_double_align=$ac_status) AC_MSG_RESULT($ac_cv_c_double_align) -AC_DEFINE_UNQUOTED(DOUBLE_ALIGN, $ac_cv_c_double_align, [Alignment of double]) +AC_DEFINE_UNQUOTED(FB_DOUBLE_ALIGN, $ac_cv_c_double_align, [Alignment of double]) dnl EKU: don't know how to convert this into an autoconf test: dnl #define FB_ALIGN(n,b) ... |