X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_openvuplus;a=blobdiff_plain;f=meta-openvuplus%2Frecipes-support%2Flibtinyxml%2Flibtinyxml%2Fenforce-use-stl.patch;fp=meta-openvuplus%2Frecipes-support%2Flibtinyxml%2Flibtinyxml%2Fenforce-use-stl.patch;h=88c962bbe1fa72d972cd2e74803692e622fcaa02;hp=0000000000000000000000000000000000000000;hb=d46ebdf3dab36adda4e1cec09897eaa5ad1f4a6e;hpb=b4e3195ecc36ab3d2dfce78d8fce6685ba52e7ec;ds=sidebyside diff --git a/meta-openvuplus/recipes-support/libtinyxml/libtinyxml/enforce-use-stl.patch b/meta-openvuplus/recipes-support/libtinyxml/libtinyxml/enforce-use-stl.patch new file mode 100644 index 0000000..88c962b --- /dev/null +++ b/meta-openvuplus/recipes-support/libtinyxml/libtinyxml/enforce-use-stl.patch @@ -0,0 +1,20 @@ +Description: TinyXml is built with TIXML_USE_STL, so we have to + enforce it when the library is used. +Author: Felix Geyer + +Upstream-Status: Pending + +diff -Nur tinyxml-2.5.3/tinyxml.h tinyxml-2.5.3.patch/tinyxml.h +--- tinyxml-2.5.3/tinyxml.h 2007-05-07 00:41:23.000000000 +0200 ++++ tinyxml-2.5.3.patch/tinyxml.h 2009-07-08 22:32:03.000000000 +0200 +@@ -26,6 +26,10 @@ + #ifndef TINYXML_INCLUDED + #define TINYXML_INCLUDED + ++#ifndef TIXML_USE_STL ++ #define TIXML_USE_STL ++#endif ++ + #ifdef _MSC_VER + #pragma warning( push ) + #pragma warning( disable : 4530 )