diff options
author | Marcus Boerger <helly@php.net> | 2005-02-25 23:51:53 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-02-25 23:51:53 +0000 |
commit | 9ffeb12c4cdb930cc7563589ef954a0c3588f672 (patch) | |
tree | 3172f23cb3f3fbb96a30e02e0d96587654267fa2 /ext/dba/php_db1.h | |
parent | 28dbc778d830d89fef27e17965ff6684a0d3f924 (diff) | |
download | php-git-9ffeb12c4cdb930cc7563589ef954a0c3588f672.tar.gz |
- Add support for db1 through emulation
# Most probably db4 requires a slightly different detection since functions
# are macros which most probably doesn't work with current configure check.
Diffstat (limited to 'ext/dba/php_db1.h')
-rwxr-xr-x | ext/dba/php_db1.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/dba/php_db1.h b/ext/dba/php_db1.h new file mode 100755 index 0000000000..c0bb5f08b4 --- /dev/null +++ b/ext/dba/php_db1.h @@ -0,0 +1,12 @@ +#ifndef PHP_DB1_H +#define PHP_DB1_H + +#if DBA_DB1 + +#include "php_dba.h" + +DBA_FUNCS(db1); + +#endif + +#endif |