summaryrefslogtreecommitdiff
path: root/math/gracetmpl/files/patch-gracetmpl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'math/gracetmpl/files/patch-gracetmpl.cc')
-rw-r--r--math/gracetmpl/files/patch-gracetmpl.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/math/gracetmpl/files/patch-gracetmpl.cc b/math/gracetmpl/files/patch-gracetmpl.cc
new file mode 100644
index 000000000000..920c4a7476be
--- /dev/null
+++ b/math/gracetmpl/files/patch-gracetmpl.cc
@@ -0,0 +1,20 @@
+--- gracetmpl.cpp.bak Fri Sep 24 21:56:02 2004
++++ gracetmpl.cpp Sat Jun 18 00:18:52 2005
+@@ -24,7 +24,7 @@
+
+ extern "C" {
+ #include <math.h>
+-#include <values.h>
++#include <float.h>
+ #include <ctype.h>
+ #include <time.h>
+ #include <sys/time.h>
+@@ -981,7 +981,7 @@
+ gettimeofday(&tv,0);
+
+ size= (tm==0) ?
+- strftime(buffer,999,format.c_str(),localtime(&tv.tv_sec)):
++ strftime(buffer,999,format.c_str(),localtime((const time_t *) &tv.tv_sec)):
+ strftime(buffer,999,format.c_str(),tm);
+ buffer[999]= 0;
+ return string(buffer);