pkgsrc/geography/merkaartor/patches/patch-src_Features_Node.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
371 B
C

$NetBSD: patch-src_Features_Node.h,v 1.1 2013/02/26 11:15:19 joerg Exp $
--- src/Features/Node.h.orig 2013-02-25 22:41:59.000000000 +0000
+++ src/Features/Node.h
@@ -12,7 +12,7 @@
#include <QtCore/QDateTime>
#include <QtXml>
-#ifndef _MOBILE
+#if !defined(_MOBILE) && !defined(Q_MOC_RUN)
#include <ggl/ggl.hpp>
#include <ggl/geometries/register/point.hpp>
#endif