diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2009-04-16 22:14:52 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2009-04-16 22:14:52 +0000 |
commit | 96ec5091f5fc7a8b7b0440b26b913ac580642f37 (patch) | |
tree | 34ddab84f618eb31e971a34580fb58d415f78f43 | |
parent | 4aab8b21ac336674449015d1f0496d06d15894b0 (diff) | |
download | php-git-96ec5091f5fc7a8b7b0440b26b913ac580642f37.tar.gz |
MFB: Fixed compiler warning
-rw-r--r-- | ext/pdo_firebird/firebird_driver.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo_firebird/firebird_driver.c b/ext/pdo_firebird/firebird_driver.c index 8813c45dfd..eda7211c95 100644 --- a/ext/pdo_firebird/firebird_driver.c +++ b/ext/pdo_firebird/firebird_driver.c @@ -25,6 +25,9 @@ #define _GNU_SOURCE #include "php.h" +#ifdef ZEND_ENGINE_2 +# include "zend_exceptions.h" +#else #include "php_ini.h" #include "ext/standard/info.h" #include "pdo/php_pdo.h" |