| Anantha Kesari H Y 2005-03-10, 8:55 am |
| hyanantha Thu Mar 10 04:50:37 2005 EDT
Modified files: (Branch: PHP_5_0)
/ZendEngine2 Zend.m4
Log:
This patch is needed for cross compilation to go through
http://cvs.php.net/diff.php/ZendEng...2=1.43.2.4&ty=u
Index: ZendEngine2/Zend.m4
diff -u ZendEngine2/Zend.m4:1.43.2.3 ZendEngine2/Zend.m4:1.43.2.4
--- ZendEngine2/Zend.m4:1.43.2.3 Wed Feb 16 23:45:14 2005
+++ ZendEngine2/Zend.m4 Thu Mar 10 04:50:37 2005
@@ -1,5 +1,5 @@
dnl
-dnl $Id: Zend.m4,v 1.43.2.3 2005/02/17 04:45:14 sniper Exp $
+dnl $Id: Zend.m4,v 1.43.2.4 2005/03/10 09:50:37 hyanantha Exp $
dnl
dnl This file contains Zend specific autoconf functions.
dnl
@@ -265,6 +265,9 @@
LIBZEND_MM_ALIGN_LOG2=`cat conftest.zend | cut -d ' ' -f 2`
AC_DEFINE_UNQUOTED(ZEND_MM_ALIGNMENT, $LIBZEND_MM_ALIGN, [ ])
AC_DEFINE_UNQUOTED(ZEND_MM_ALIGNMENT_LOG
2, $LIBZEND_MM_ALIGN_LOG2, [ ])
+], [], [
+ dnl cross-compile needs something here
+ LIBZEND_MM_ALIGN=8
])
AC_MSG_RESULT(done)
|