Commit: 453194d0acc9398ae93fd4959fae3ff3c0e96297 Author: krakjoe <joe.watk...@live.co.uk> Wed, 13 Nov 2013 22:18:20 +0000 Parents: a43bc6ef91d7b6e6c0a9cf57b043a3ba436bea23 Branches: PHP-5.6
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=453194d0acc9398ae93fd4959fae3ff3c0e96297 Log: change defaults for windows Changed paths: M phpdbg.h Diff: diff --git a/phpdbg.h b/phpdbg.h index 0730354..15155e1 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" -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php