summaryrefslogtreecommitdiff
path: root/ext/dba/php_db1.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-02-25 23:51:53 +0000
committerMarcus Boerger <helly@php.net>2005-02-25 23:51:53 +0000
commit9ffeb12c4cdb930cc7563589ef954a0c3588f672 (patch)
tree3172f23cb3f3fbb96a30e02e0d96587654267fa2 /ext/dba/php_db1.h
parent28dbc778d830d89fef27e17965ff6684a0d3f924 (diff)
downloadphp-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-xext/dba/php_db1.h12
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