ports/graphics/pfstools/files/patch-config.h.in
Danilo Egea Gondolfo ce3d606a5b - Update from 1.6.4 to 1.8.5 [1]
- Use options helpers

PR:		ports/191179
Submitted by:	ii@any.com.ru [1]
2014-06-20 17:17:54 +00:00

19 lines
572 B
C

--- config.h.in.orig 2011-10-27 08:40:42.000000000 +0000
+++ config.h.in 2014-02-20 19:04:01.536587053 +0000
@@ -99,13 +99,13 @@
/* Output stream for debug messages. */
#ifdef DEBUG
-#define DEBUG_STR cerr
+#define DEBUG_STR std::cerr
#else
-#define DEBUG_STR if(1); else cerr
+#define DEBUG_STR if(1); else std::cerr
#endif
/* Output stream for verbose messages */
#define VERBOSE_STR if(verbose) std::cerr << PROG_NAME << ": "
/* On some systems iostream, string etc are in 'std' namespace */
-using namespace std;
+//using namespace std;