From: krakjoe Date: Wed, 13 Nov 2013 22:18:20 +0000 (+0000) Subject: change defaults for windows X-Git-Tag: php-5.6.0alpha1~110^2~351^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=453194d0acc9398ae93fd4959fae3ff3c0e96297;p=php change defaults for windows --- diff --git a/phpdbg.h b/phpdbg.h index 0730354313..15155e1960 100644 --- a/phpdbg.h +++ b/phpdbg.h @@ -84,7 +84,11 @@ #define PHPDBG_IS_QUITTING 0x001000000000 #define PHPDBG_IS_COLOURED 0x010000000000 -#define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED) /* }}} */ +#ifndef _WIN32 +# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED) +#else +# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET) +#endif /* }}} */ /* {{{ strings */ #define PHPDBG_ISSUES "http://github.com/krakjoe/phpdbg/issues"