diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-06-17 17:38:36 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-06-17 17:38:36 +0000 |
commit | b6d3fccfffcf8fceeabf1db98e06f75fb4a9743d (patch) | |
tree | 1f8a61e0b2a411bcb85fe9ffba065d0f20dea809 /math/gracetmpl/files/patch-gracetmpl.cc | |
parent | Make this work on FreeBSD 5.x. (diff) |
- Update to 0.3.2
PR: ports/82277
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'math/gracetmpl/files/patch-gracetmpl.cc')
-rw-r--r-- | math/gracetmpl/files/patch-gracetmpl.cc | 20 |
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); |