From 08a4924344dcab53549d174baf5eca586d97de37 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 17 Apr 2002 17:57:40 +0000 Subject: [PATCH] Give HAVE_UODBC meaning on Win32. --- main/internal_functions_win32.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index ca1dc955a6..bf6fbda212 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -54,7 +54,9 @@ #endif #include "ext/standard/reg.h" #include "ext/pcre/php_pcre.h" +#if HAVE_UODBC #include "ext/odbc/php_odbc.h" +#endif #include "ext/session/php_session.h" #if HAVE_LIBEXPAT #include "ext/xml/php_xml.h" @@ -86,7 +88,9 @@ zend_module_entry *php_builtin_extensions[] = { phpext_mbstring_ptr, #endif phpext_mysql_ptr, +#if HAVE_UODBC phpext_odbc_ptr, +#endif #if HAVE_OVERLOAD phpext_overload_ptr, #endif -- 2.50.1