1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# Copyright (C) 2008 Peter De Wachter <pdewacht@gmail.com>
# Distributed under the same license as the original software. See debian/copyright.
Index: bulletml-0.0.6/src/tinyxml/tinyxml.h
===================================================================
--- bulletml-0.0.6.orig/src/tinyxml/tinyxml.h 2007-12-31 22:41:41.000000000 +0100
+++ bulletml-0.0.6/src/tinyxml/tinyxml.h 2007-12-31 22:42:26.000000000 +0100
@@ -26,7 +26,9 @@
#define TINYXML_INCLUDED
#include <string>
+#include <string.h>
#include <stdio.h>
+#include <stdlib.h>
#include <assert.h>
class TiXmlDocument;
Index: bulletml-0.0.6/src/calc.yy
===================================================================
--- bulletml-0.0.6.orig/src/calc.yy 2007-12-31 22:42:56.000000000 +0100
+++ bulletml-0.0.6/src/calc.yy 2007-12-31 22:43:10.000000000 +0100
@@ -12,6 +12,8 @@
#include <vector>
#include <sstream>
+#include <string.h>
+
#include "calc.h"
#include "formula.h"
#include "formula-variables.h"
|