diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-03-14 00:54:58 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-03-14 00:54:58 +0000 |
commit | 527e88b58922d0d865af987d788f2e65aff1b9b1 (patch) | |
tree | 8e4aca1bd6d174e996866753f62659adec741f75 /net | |
parent | 8bcced48eb781b8fae01e72a2e47e7b15c2f4521 (diff) | |
download | ports-527e88b58922d0d865af987d788f2e65aff1b9b1.tar.gz ports-527e88b58922d0d865af987d788f2e65aff1b9b1.zip |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/meanwhile/files/patch-src_mw_debug.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/meanwhile/files/patch-src_mw_debug.h b/net/meanwhile/files/patch-src_mw_debug.h new file mode 100644 index 000000000000..53b96e6a649a --- /dev/null +++ b/net/meanwhile/files/patch-src_mw_debug.h @@ -0,0 +1,15 @@ +--- src/mw_debug.h.orig Sun Mar 13 19:52:16 2005 ++++ src/mw_debug.h Sun Mar 13 19:52:51 2005 +@@ -9,8 +9,12 @@ + #define NSTR(str) ((str != NULL)? str: "(null)") + + ++#ifndef g_debug + #define g_debug(format...) g_log(G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format) ++#endif ++#ifndef g_info + #define g_info(format...) g_log(G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format) ++#endif + + + /** |