Changeset 89

Show
Ignore:
Timestamp:
05/10/05 10:21:35 (4 years ago)
Author:
zoeloelip
Message:

Added some includes to satisfy VC.NET (thanks to dakalka, patch 1198522)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/ChangeLog

    r83 r89  
     12005-05-10 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2         
     3        * Added some includes to satisfy VC.NET (thanks to dakalka, patch 1198522) 
     4 
     52005-05-09 Franck Tabary <franck34 at users.sourceforge.net> 
     6        * released eAccelerator 0.9.3-rc1 
     7 
    182005-05-09 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    29 
  • eaccelerator/trunk/eaccelerator.c

    r81 r89  
    4646#include "session.h" 
    4747#include "content.h" 
     48#include "cache.h" 
    4849 
    4950#include <sys/types.h> 
  • eaccelerator/trunk/mm.h

    r63 r89  
    2020#define MM_LOCK_RD 0 
    2121 
    22 #if (_MSC_VER < 1300) 
     22#if (_MSC_VER < 1400) 
    2323MM*    _mm_create(size_t size, const char* key); 
    2424void   _mm_set_attach(MM* mm, void* attach_addr); 
     
    4848int mm_protect(MM* mm, int mode); 
    4949 
    50 #if (_MSC_VER < 1300) 
     50#if (_MSC_VER < 1400) 
    5151#define mm_create(A, B)        _mm_create(A, B) 
    5252#define mm_set_attach(A, B)    _mm_set_attach(A, B) 
  • eaccelerator/trunk/session.c

    r64 r89  
    3737#include <fcntl.h> 
    3838 
     39#ifdef WIN32 
     40#       include "win32/time.h" 
     41#endif 
     42 
    3943#if defined(HAVE_PHP_SESSIONS_SUPPORT) && defined(PS_CREATE_SID_ARGS) 
    4044#       include "ext/standard/php_lcg.h" 
  • eaccelerator/trunk/webui.c

    r73 r89  
    3636#include "webui.h" 
    3737#include "opcodes.h" 
     38#include "cache.h" 
     39#include "mm.h" 
    3840 
    3941#include "zend.h"