freebsd-ports/www/newsbeuter/files/patch-include-matcher.h
Tilman Keskinoz c25f63fde8 Remove USE_GCC, this fixes segfaults due to mixing c++ libraries.
PR:             186347
Submitted by:   til
Reported by:    Zsolt Udvari <udvzsolt@gmail.com>
2014-02-03 15:47:22 +00:00

13 lines
289 B
C++

--- include/matcher.h.orig 2014-02-02 16:00:13.000000000 +0100
+++ include/matcher.h 2014-02-02 16:00:19.000000000 +0100
@@ -3,6 +3,10 @@
#include <FilterParser.h>
+#ifdef _LIBCPP_VERSION
+namespace std { namespace tr1 = std; }
+#endif
+
namespace newsbeuter {
class matchable {