diff options
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index 4baf6a954a..9132c934eb 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -40,17 +40,20 @@ #if defined(HAVE_SOLID) #include <cli0core.h> #include <cli0ext1.h> - /*the following help for SOLID 3.0 */ + #include <cli0env.h> +#elif defined(HAVE_SOLID_30) + #include <cli0cli.h> + #include <cli0defs.h> #include <cli0env.h> #elif defined(HAVE_SOLID_35) #if !defined(PHP_WIN32) #include <sqlunix.h> - #endif + #endif /* end: #if !defined(PHP_WIN32) */ #include <sqltypes.h> #include <sqlucode.h> #include <sqlext.h> #include <sql.h> -#endif +#endif /* end: #if defined(HAVE_SOLID) */ #undef HAVE_SQL_EXTENDED_FETCH PHP_FUNCTION(solid_fetch_prev); #define SQLSMALLINT SWORD |