]> granicus.if.org Git - php/commitdiff
change defaults for windows
authorkrakjoe <joe.watkins@live.co.uk>
Wed, 13 Nov 2013 22:18:20 +0000 (22:18 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Wed, 13 Nov 2013 22:18:20 +0000 (22:18 +0000)
phpdbg.h

index 0730354313381d402d9630b2aa59c16e7f4b9be9..15155e1960f294420b4066bcb714d5d3beb94ed9 100644 (file)
--- a/phpdbg.h
+++ b/phpdbg.h
 #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"