diff options
author | Patrick van Kleef <iodbc@php.net> | 2008-08-29 16:44:29 +0000 |
---|---|---|
committer | Patrick van Kleef <iodbc@php.net> | 2008-08-29 16:44:29 +0000 |
commit | 1401532e972172b539874f67d951130a25e41a33 (patch) | |
tree | 4cb18e619ae4ce3004d7b95a92dee55b12816fc3 /ext/odbc/php_odbc.h | |
parent | 9566ebabcbb16c044ef246d7283c466cfff4531e (diff) | |
download | php-git-1401532e972172b539874f67d951130a25e41a33.tar.gz |
- MFH: Fixed code to use ODBC 3.52 datatypes for 64bit systems (bug #43666)
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index a877ed4712..f482af3f33 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -33,7 +33,7 @@ extern zend_module_entry odbc_module_entry; #define odbc_module_ptr &odbc_module_entry -#if defined(HAVE_DBMAKER) || defined(PHP_WIN32) || defined(HAVE_IBMDB2) || defined(HAVE_UNIXODBC) || defined(HAVE_BIRDSTEP) +#if defined(HAVE_DBMAKER) || defined(PHP_WIN32) || defined(HAVE_IBMDB2) || defined(HAVE_UNIXODBC) || defined(HAVE_BIRDSTEP) || defined(HAVE_IODBC) # define PHP_ODBC_HAVE_FETCH_HASH 1 #endif |