summaryrefslogtreecommitdiff
path: root/ext/interbase/config.w32
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2004-05-12 14:29:42 +0000
committerArd Biesheuvel <abies@php.net>2004-05-12 14:29:42 +0000
commitafc9cb151bec01d3d3a9a8f353a35940495e2e5a (patch)
treeb099c5036ba184d6c0c38497733e43211033555f /ext/interbase/config.w32
parentb4939dfa9adfc3d1561735cd3f95206844aca680 (diff)
downloadphp-git-afc9cb151bec01d3d3a9a8f353a35940495e2e5a.tar.gz
Dropped support for ancient Interbase versions (< 6)
# This has no consequences for Firebird, as its initial release was based on IB 6
Diffstat (limited to 'ext/interbase/config.w32')
-rw-r--r--ext/interbase/config.w328
1 files changed, 2 insertions, 6 deletions
diff --git a/ext/interbase/config.w32 b/ext/interbase/config.w32
index 0019861c59..78a442d8ca 100644
--- a/ext/interbase/config.w32
+++ b/ext/interbase/config.w32
@@ -2,19 +2,15 @@
// vim:ft=javascript
ARG_WITH("interbase", "InterBase support", "no");
-ARG_WITH("interbase5", "InterBase 5.x support", "no");
-if (PHP_INTERBASE != "no" || PHP_INTERBASE5 != "no") {
+if (PHP_INTERBASE != "no") {
if (CHECK_HEADER_ADD_INCLUDE("ibase.h", "CFLAGS_INTERBASE", PHP_PHP_BUILD + "\\interbase\\include;" + PHP_INTERBASE) &&
(CHECK_LIB("fbclient_ms.lib", "interbase", PHP_PHP_BUILD + "\\interbase\\lib_ms;" + PHP_INTERBASE) ||
CHECK_LIB("gds32_ms.lib", "interbase", PHP_PHP_BUILD + "\\interbase\\lib_ms;" + PHP_INTERBASE))) {
+
EXTENSION("interbase", "interbase.c ibase_query.c ibase_service.c ibase_events.c ibase_blobs.c");
AC_DEFINE('HAVE_IBASE', 1, 'Have interbase library');
-
- if (PHP_INTERBASE != "no") {
- AC_DEFINE('HAVE_IBASE6_API', 1, 'Have interbase version 6 API library');
- }
} else {
WARNING("interbase not enabled; libraries and headers not found");
}