diff options
author | Ard Biesheuvel <abies@php.net> | 2003-09-17 01:25:08 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2003-09-17 01:25:08 +0000 |
commit | 0cce471b0a269ea0f842015f0e2f54eba2507cb6 (patch) | |
tree | 64c4b6000eeca58ef75a8da46cb947b8616b2ea6 /ext/interbase/interbase.c | |
parent | 328a6b862aa0eb1279f6a1d999139b342ffc209e (diff) | |
download | php-git-0cce471b0a269ea0f842015f0e2f54eba2507cb6.tar.gz |
Link to fbclient.dll if available
Add client lib name to dll version info
Diffstat (limited to 'ext/interbase/interbase.c')
-rw-r--r-- | ext/interbase/interbase.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index dfb71ab72e..43c60f64d9 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -28,7 +28,7 @@ #define FILE_REVISION "$Revision$" -#if HAVE_IBASE && !defined(VERSION_INFO_ONLY) +#if HAVE_IBASE #include "php_ini.h" #include "ext/standard/php_standard.h" @@ -71,6 +71,8 @@ typedef unsigned long long ISC_UINT64; #define LL_LIT(lit) lit ## I64 #ifdef FB_SQLDA #pragma comment(lib, "fbclient_ms.lib") +#else +#pragma comment(lib, "gds32_ms.lib") #endif #else #define LL_MASK "ll" |