From d2809b9fcaf3b3a0d1b13e075fe3b94810b38027 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 17 Apr 2002 17:38:03 +0000 Subject: [PATCH] Give HAVE_FTP 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 23f4644d065..26d8b912804 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -49,7 +49,9 @@ #include "ext/standard/php_assert.h" #include "ext/calendar/php_calendar.h" #include "ext/com/php_COM.h" +#if HAVE_FTP #include "ext/ftp/php_ftp.h" +#endif #include "ext/standard/reg.h" #include "ext/pcre/php_pcre.h" #include "ext/odbc/php_odbc.h" @@ -73,7 +75,9 @@ zend_module_entry *php_builtin_extensions[] = { #endif phpext_calendar_ptr, phpext_com_ptr, +#if HAVE_FTP phpext_ftp_ptr, +#endif #if defined(MBSTR_ENC_TRANS) phpext_mbstring_ptr, #endif