diff options
author | Marcus Boerger <helly@php.net> | 2005-10-02 20:38:18 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-10-02 20:38:18 +0000 |
commit | 991a29cfd6005006c88c7376766f68f910411ea6 (patch) | |
tree | 041560cfdd06355f1ecc5e8966357ec4a3f3ff87 /ext/pdo/php_pdo.h | |
parent | ca9dd7d82674dc802f9a4c6a6e4600627b3590ce (diff) | |
download | php-git-991a29cfd6005006c88c7376766f68f910411ea6.tar.gz |
- MFH PDOException base
Diffstat (limited to 'ext/pdo/php_pdo.h')
-rwxr-xr-x | ext/pdo/php_pdo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo.h b/ext/pdo/php_pdo.h index 7754dba2b3..e4bc15943f 100755 --- a/ext/pdo/php_pdo.h +++ b/ext/pdo/php_pdo.h @@ -23,6 +23,10 @@ #include "zend.h" +#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 1) +#define can_handle_soft_dependency_on_SPL 1 +#endif + extern zend_module_entry pdo_module_entry; #define phpext_pdo_ptr &pdo_module_entry |