a blind attempt to fix tinderbox failure

Change-Id: I3b33529a37174682e68be897a77b2736133b6ac6
This commit is contained in:
David Tardon
2015-08-31 12:22:32 +02:00
parent ad6d83defb
commit 34c8903fb1
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
From de94f4f83973df18a0cea257656c9cdc0fdd214b Mon Sep 17 00:00:00 2001
From: David Tardon <dtardon@redhat.com>
Date: Mon, 31 Aug 2015 12:19:53 +0200
Subject: [PATCH] error: 'atoi' was not declared in this scope
---
src/lib/WPSOLEParser.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/lib/WPSOLEParser.cpp b/src/lib/WPSOLEParser.cpp
index 9a57341..ac564b4 100644
--- a/src/lib/WPSOLEParser.cpp
+++ b/src/lib/WPSOLEParser.cpp
@@ -64,6 +64,7 @@
* ------------------------------------------------------------
*/
+#include <cstdlib>
#include <cstring>
#include <map>
#include <sstream>
@@ -296,7 +297,7 @@ bool WPSOLEParser::parse(RVNGInputStreamPtr file)
std::string::size_type idP = pos-1;
while (idP >=1 && dir[idP-1] >= '0' && dir[idP-1] <= '9')
idP--;
- int val = atoi(dir.substr(idP, idP-pos).c_str());
+ int val = std::atoi(dir.substr(idP, idP-pos).c_str());
if (id[0] == -1) id[0] = val;
else
{
--
2.4.3

View File

@@ -15,6 +15,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,libwps,1))
$(eval $(call gb_UnpackedTarball_add_patches,libwps,\
external/libwps/0001-add-missing-include.patch \
external/libwps/0001-error-atoi-was-not-declared-in-this-scope.patch \
$(if $(SYSTEM_REVENGE),,external/libwps/rpath.patch.0) \
))