config.w32 720 B

1234567891011121314151617
  1. // vim:ft=javascript
  2. ARG_WITH("interbase", "InterBase support", "no");
  3. if (PHP_INTERBASE != "no") {
  4. if (CHECK_HEADER_ADD_INCLUDE("ibase.h", "CFLAGS_INTERBASE",
  5. PHP_PHP_BUILD + "\\include\\interbase;" + PHP_PHP_BUILD + "\\interbase\\include;" + PHP_INTERBASE) &&
  6. (CHECK_LIB("fbclient_ms.lib", "interbase", PHP_PHP_BUILD + "\\interbase\\lib_ms;" + PHP_INTERBASE) ||
  7. CHECK_LIB("gds32_ms.lib", "interbase", PHP_PHP_BUILD + "\\interbase\\lib_ms;" + PHP_INTERBASE))) {
  8. EXTENSION("interbase", "interbase.c ibase_query.c ibase_service.c ibase_events.c ibase_blobs.c");
  9. AC_DEFINE('HAVE_IBASE', 1, 'Have interbase library');
  10. } else {
  11. WARNING("interbase not enabled; libraries and headers not found");
  12. }
  13. }