freebsd-ports/devel/monotone/files/patch-sanity.hh
Thierry Thomas 61c8e5224e Add monotone 0.11, a distributed version control system with
digital signatures.

PR:		65921
Submitted by:	Mark A. Wicks
2004-06-14 19:35:28 +00:00

14 lines
391 B
C++

--- sanity.hh.orig Wed Jan 7 13:11:48 2004
+++ sanity.hh Sun Mar 21 22:49:59 2004
@@ -58,7 +58,11 @@
extern sanity global_sanity;
// F is for when you want to build a boost formatter
+#ifdef ENABLE_NLS
#define F(str) boost::format(gettext(str))
+#else
+#define F(str) boost::format((str))
+#endif
// L is for logging, you can log all you want
#define L(fmt) global_sanity.log(fmt)