1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## cstdlib_sparc.dpatch by <zobel@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: fix FTBFS on sparc
@DPATCH@
diff -urNad libcommoncpp2-1.6.2~/src/mempager.cpp libcommoncpp2-1.6.2/src/mempager.cpp
--- libcommoncpp2-1.6.2~/src/mempager.cpp 2008-03-24 11:19:07.000000000 +1100
+++ libcommoncpp2-1.6.2/src/mempager.cpp 2008-08-25 19:50:33.000000000 +1000
@@ -42,6 +42,8 @@
#include <cc++/misc.h>
#include "private.h"
+#include <cstdlib>
+
#ifdef CCXX_NAMESPACES
namespace ost {
using std::endl;
|