diff --git a/config.w32 b/config.w32 index b3893ccc2da..955d2290e9a 100644 --- a/config.w32 +++ b/config.w32 @@ -1,6 +1,6 @@ ARG_ENABLE('phpdbg', 'Build phpdbg', 'yes'); if (PHP_PHPDBG == "yes") { - SAPI('phpdbg', 'phpdbg.c phpdbg_prompt.c phpdbg_help.c phpdbg_break.c phpdbg_print.c phpdbg_bp.c phpdbg_opcode.c phpdbg_list.c phpdbg_utils.c', 'phpdbg.exe'); + SAPI('phpdbg', 'phpdbg.c phpdbg_prompt.c phpdbg_cmd.c phpdbg_info.c phpdbg_help.c phpdbg_break.c phpdbg_print.c phpdbg_bp.c phpdbg_opcode.c phpdbg_list.c phpdbg_utils.c', 'phpdbg.exe'); } diff --git a/phpdbg_utils.c b/phpdbg_utils.c index a368f9fba66..0828374eac6 100644 --- a/phpdbg_utils.c +++ b/phpdbg_utils.c @@ -26,6 +26,10 @@ #include "phpdbg_opcode.h" #include "phpdbg_utils.h" +#ifdef _WIN32 +# include "win32/time.h" +#endif + ZEND_EXTERN_MODULE_GLOBALS(phpdbg); int phpdbg_is_numeric(const char *str) /* {{{ */ diff --git a/tutorials/Thumbs.db b/tutorials/Thumbs.db new file mode 100644 index 00000000000..d64654ac9ea Binary files /dev/null and b/tutorials/Thumbs.db differ