Changeset 101
- Timestamp:
- 05/16/05 00:56:09 (4 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/config.m4 (modified) (2 diffs)
- eaccelerator/trunk/eaccelerator.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r100 r101 1 2005-04-16 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 * Added --without-eaccelerator-use-inode configure switch to disable the use 3 of inode numbers for the hash keys (Feature request 1201159). The default 4 behaviour doesn't change. 5 1 6 2005-04-15 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 7 * Compile fix for bug 1201564. eaccelerator/trunk/config.m4
r73 r101 86 86 ]) 87 87 88 AC_ARG_WITH(eaccelerator-use-inode, 89 [ --without-eaccelerator-use-inode Don't use inodes to determine hash keys (never used on win32)],[ 90 eaccelerator_inode=$withval 91 ],[ 92 eaccelerator_inode=yes 93 ]) 94 88 95 dnl PHP_BUILD_SHARED 89 96 if test "$PHP_EACCELERATOR" != "no"; then … … 120 127 if test "$eaccelerator_executor" = "yes"; then 121 128 AC_DEFINE(WITH_EACCELERATOR_EXECUTOR, 1, [Define if you like use optimized executor (not implemented yet)]) 129 fi 130 if test "$eaccelerator_inode" = "yes"; then 131 AC_DEFINE(WITH_EACCELERATOR_USE_INODE, 1, [Undef if you don't wan't to use inodes to determine hash keys]) 122 132 fi 123 133 eaccelerator/trunk/eaccelerator.h
r76 r101 57 57 #endif 58 58 59 // TODO: add as configure switch 60 #ifndef ZEND_WIN32 59 #if !defined(ZEND_WIN32) && defined(WITH_EACCELERATOR_USE_INODE) 61 60 /* UnDefine if your filesystem doesn't support inodes */ 62 61 # define EACCELERATOR_USE_INODE