Changeset 8 for trunk/config.m4
- Timestamp:
- 2006-05-13T05:19:43+02:00 (7 years ago)
- File:
-
- 1 edited
-
trunk/config.m4 (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/config.m4
r1 r8 8 8 if test "$PHP_$3" = "yes"; then 9 9 xcache_sources="$xcache_sources $1.c" 10 HAVE_$3=1 10 11 AC_DEFINE([HAVE_$3], 1, [Define for XCACHE: $4]) 12 else 13 HAVE_$3= 11 14 fi 12 15 ])dnl … … 57 60 PHP_SUBST([XCACHE_INDENT]) 58 61 62 dnl $ac_srcdir etc require PHP_NEW_EXTENSION 59 63 XCACHE_PROC_SOURCES=`ls $ac_srcdir/processor/*.m4` 60 64 PHP_SUBST([XCACHE_PROC_SOURCES]) 65 66 AC_MSG_CHECKING(if you have opcode_spec_def.h for xcache) 67 if test -e "$ac_srcdir/opcode_spec_def.h" ; then 68 AC_DEFINE([HAVE_XCACHE_OPCODE_SPEC_DEF], 1, [Define if you have opcode_spec_def.h for xcache]) 69 AC_MSG_RESULT(yes) 70 else 71 dnl check for features depend on opcode_spec_def.h 72 AC_MSG_RESULT(no) 73 define([ERROR], [ 74 AC_MSG_ERROR([cannot build with $1, $ac_srcdir/opcode_spec_def.h required]) 75 ]) 76 if test "$HAVE_XCACHE_DISASSEMBLER" = "1" ; then 77 ERROR(disassembler) 78 fi 79 undefine([ERROR]) 80 fi 61 81 fi
Note: See TracChangeset
for help on using the changeset viewer.

