pkgsrc/geography/merkaartor/patches/patch-src_Features_Way.h
joerg 380cc30a71 Qt4's MOC can't deal with BOOST_JOIN, so disable some includes before it
sees the boost headers. Use C++11 tuple syntax.
2013-02-26 11:15:18 +00:00

13 lines
318 B
C

$NetBSD: patch-src_Features_Way.h,v 1.1 2013/02/26 11:15:19 joerg Exp $
--- src/Features/Way.h.orig 2013-02-25 22:42:09.000000000 +0000
+++ src/Features/Way.h
@@ -8,7 +8,7 @@
#include "Layer.h"
#include "OsbLayer.h"
-#ifndef _MOBILE
+#if !defined(_MOBILE) && !defined(Q_MOC_RUN)
#include <ggl/ggl.hpp>
#endif