Check-in Number:
|
5206 | |
Date: |
2005-Oct-03 09:34:43 (local)
2005-Oct-03 07:34:43 (UTC) |
User: | rse |
Branch: | |
Comment: |
flush pending changes |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/str/ChangeLog 1.52 -> 1.53
--- ChangeLog 2005/09/23 14:20:46 1.52
+++ ChangeLog 2005/10/03 07:34:43 1.53
@@ -11,6 +11,12 @@
Changes between 0.9.10 and 0.9.11 (24-Jan-2004 to 21-Aug-2005):
+ *) Fixed isnan(3) & isinf(3) related compile-time warnings.
+ [Ralf S. Engelschall <rse@engelschall.com>]
+
+ *) Upgraded build environment to GNU libtool 1.5.20 and GNU shtool 2.0.3.
+ [Ralf S. Engelschall <rse@engelschall.com>]
+
*) Remove bogus $(S) in Makefile.in
[Ralf S. Engelschall <rse@engelschall.com>]
|
|
ossp-pkg/str/devtool.conf 1.7 -> 1.8
--- devtool.conf 2005/01/24 15:32:38 1.7
+++ devtool.conf 2005/10/03 07:34:43 1.8
@@ -3,8 +3,8 @@
##
%autogen
- @autogen shtool 2.0.1 "2.0.*" echo install mkdir fixperm tarball version
- @autogen libtool 1.5.10 "1.5*"
+ @autogen shtool 2.0.3 "2.0.*" echo install mkdir fixperm tarball version
+ @autogen libtool 1.5.20 "1.5*"
@autogen autoconf 2.59 "2.5[4-9]*"
%autoclean
@@ -55,7 +55,7 @@
%upload
echo "+++ copying to ftp://ftp.ossp.org/pkg/lib/str/"
V=`./shtool version -lc -dshort str_version.c`
- scp str-${V}.tar.gz master.ossp.org:/e/ossp/ftp/pkg/lib/str/
+ scp str-${V}.tar.gz ossp@master.ossp.org:/v/ossp/ftp/pkg/lib/str/
%snap
rm -f str-*.tar.gz
|
|
ossp-pkg/str/str_format.c 1.30 -> 1.31
--- str_format.c 2005/01/24 15:22:19 1.30
+++ str_format.c 2005/10/03 07:34:43 1.31
@@ -89,6 +89,13 @@
* on-the-fly.
*/
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <string.h>
+#include <ctype.h>
+#include <math.h>
+
#include "str_p.h"
/* types which are locally use */
@@ -143,10 +150,10 @@
{
double fraction;
double integral;
- long trunc;
+ long truncated;
- trunc = (long)arg;
- integral = (double)trunc;
+ truncated = (long)arg;
+ integral = (double)truncated;
fraction = arg - integral;
if (iptr != NULL)
*iptr = integral;
|
|