diff options
| author | Ard Biesheuvel <abies@php.net> | 2003-09-07 19:59:55 +0000 |
|---|---|---|
| committer | Ard Biesheuvel <abies@php.net> | 2003-09-07 19:59:55 +0000 |
| commit | 6c0e21fc7474617ecaf99584b33ec3be068f4968 (patch) | |
| tree | 768aa2d8c6bc6a197504c7b826868e5234f2dec6 /ext/interbase/interbase.c | |
| parent | 9539471c60f49fe773c200de605655604a5b9f2b (diff) | |
| download | php-git-6c0e21fc7474617ecaf99584b33ec3be068f4968.tar.gz | |
Add version info to Windows DLL
Diffstat (limited to 'ext/interbase/interbase.c')
| -rw-r--r-- | ext/interbase/interbase.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index 9db1371962..e0f4a852bf 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -26,7 +26,9 @@ #include "php.h" -#if HAVE_IBASE +#define FILE_REVISION "$Revision$" + +#if HAVE_IBASE && !defined(VERSION_INFO_ONLY) #include "php_ini.h" #include "ext/standard/php_standard.h" @@ -716,7 +718,7 @@ PHP_MINFO_FUNCTION(ibase) php_info_print_table_start(); php_info_print_table_row(2, "Interbase Support", "enabled"); - php_info_print_table_row(2, "Revision", "$Revision$"); + php_info_print_table_row(2, "Revision", FILE_REVISION); #ifdef COMPILE_DL_INTERBASE php_info_print_table_row(2, "Dynamic Module", "Yes"); #endif |
