Show
Ignore:
Timestamp:
05/16/05 00:56:09 (4 years ago)
Author:
zoeloelip
Message:

Added --without-eaccelerator-use-inode configure switch to disable the use
of inode numbers for the hash keys (Feature request 1201159). The default
behaviour doesn't change.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/config.m4

    r73 r101  
    8686]) 
    8787 
     88AC_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 
    8895dnl PHP_BUILD_SHARED 
    8996if test "$PHP_EACCELERATOR" != "no"; then 
     
    120127  if test "$eaccelerator_executor" = "yes"; then 
    121128    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]) 
    122132  fi 
    123133