From afc9cb151bec01d3d3a9a8f353a35940495e2e5a Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Wed, 12 May 2004 14:29:42 +0000 Subject: Dropped support for ancient Interbase versions (< 6) # This has no consequences for Firebird, as its initial release was based on IB 6 --- ext/interbase/config.w32 | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ext/interbase/config.w32') 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"); } -- cgit v1.2.1