|
Revision 1221, 0.7 KB
(checked in by moo, 4 months ago)
|
|
updates copyright year
|
-
Property svn:eol-style set to
native
|
| Rev | Line | |
|---|
| [1] | 1 | #ifndef __XCACHE_H |
|---|
| 2 | #define __XCACHE_H |
|---|
| 3 | #define XCACHE_NAME "XCache" |
|---|
| [923] | 4 | #ifndef XCACHE_VERSION |
|---|
| [1161] | 5 | # define XCACHE_VERSION "3.0.1-dev" |
|---|
| [923] | 6 | #endif |
|---|
| [1] | 7 | #define XCACHE_AUTHOR "mOo" |
|---|
| [1221] | 8 | #define XCACHE_COPYRIGHT "Copyright (c) 2005-2013" |
|---|
| [1] | 9 | #define XCACHE_URL "http://xcache.lighttpd.net" |
|---|
| [547] | 10 | #define XCACHE_WIKI_URL XCACHE_URL "/wiki" |
|---|
| [1] | 11 | |
|---|
| [1051] | 12 | #include "php.h" |
|---|
| [1] | 13 | |
|---|
| [1051] | 14 | #if defined(E_STRICT) || defined(E_DEPRECATED) |
|---|
| 15 | #define XCACHE_ERROR_CACHING |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| [1] | 18 | #ifdef HAVE_CONFIG_H |
|---|
| 19 | #include <config.h> |
|---|
| 20 | #endif |
|---|
| [987] | 21 | #include "xcache/xc_shm.h" |
|---|
| 22 | #include "xcache/xc_lock.h" |
|---|
| [991] | 23 | #include "xcache/xc_compatibility.h" |
|---|
| [1] | 24 | |
|---|
| 25 | extern zend_module_entry xcache_module_entry; |
|---|
| 26 | #define phpext_xcache_ptr &xcache_module_entry |
|---|
| 27 | |
|---|
| [1040] | 28 | extern zend_bool xc_test; |
|---|
| 29 | |
|---|
| [1] | 30 | #endif /* __XCACHE_H */ |
|---|