Show
Ignore:
Timestamp:
07/06/05 16:52:36 (4 years ago)
Author:
zoeloelip
Message:

* Documented namespace option
* New debug/log code. Make the code a lot cleaner and easier

for the user to debug eaccelerator.

Files:

Legend:

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

    r101 r113  
    9393]) 
    9494 
     95AC_ARG_WITH(eaccelerator-debug, 
     96[  --with-eaccelerator-debug                    Enable the debug code so eaccelerator logs verbose.],[ 
     97  eaccelerator_debug=$withval 
     98],[ 
     99  eaccelerator_debug=no 
     100]) 
     101 
    95102dnl PHP_BUILD_SHARED 
    96103if test "$PHP_EACCELERATOR" != "no"; then 
     
    130137  if test "$eaccelerator_inode" = "yes"; then 
    131138    AC_DEFINE(WITH_EACCELERATOR_USE_INODE, 1, [Undef if you don't wan't to use inodes to determine hash keys]) 
     139  fi 
     140  if test "$eaccelerator_debug" = "yes"; then 
     141    AC_DEFINE(DEBUG, 1, [Undef when you want to enable eaccelerator debug code]) 
    132142  fi 
    133143