Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/public-domain/sqlite Backout previous
details: https://anonhg.NetBSD.org/src/rev/9079bfdf3f11
branches: trunk
changeset: 784945:9079bfdf3f11
user: martin <martin%NetBSD.org@localhost>
date: Thu Feb 14 21:07:25 2013 +0000
description:
Backout previous
diffstat:
external/public-domain/sqlite/bin/Makefile | 4 ++--
external/public-domain/sqlite/dist/sqlite3.c | 10 +++++-----
2 files changed, 7 insertions(+), 7 deletions(-)
diffs (55 lines):
diff -r 0df25af8dd2a -r 9079bfdf3f11 external/public-domain/sqlite/bin/Makefile
--- a/external/public-domain/sqlite/bin/Makefile Thu Feb 14 19:18:38 2013 +0000
+++ b/external/public-domain/sqlite/bin/Makefile Thu Feb 14 21:07:25 2013 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.4 2013/02/14 17:12:23 martin Exp $
+# $NetBSD: Makefile,v 1.5 2013/02/14 21:07:25 martin Exp $
PROG= sqlite3
SRCS= shell.c
DPADD+= ${LIBSQLITE3} ${LIBEDIT} ${LIBTERIMINFO}
-LDADD+= -lsqlite3 -ledit -lterminfo -lm
+LDADD+= -lsqlite3 -ledit -lterminfo
BINDIR= /usr/bin
diff -r 0df25af8dd2a -r 9079bfdf3f11 external/public-domain/sqlite/dist/sqlite3.c
--- a/external/public-domain/sqlite/dist/sqlite3.c Thu Feb 14 19:18:38 2013 +0000
+++ b/external/public-domain/sqlite/dist/sqlite3.c Thu Feb 14 21:07:25 2013 +0000
@@ -19422,14 +19422,11 @@
** 16 (the number of significant digits in a 64-bit float) '0' is
** always returned.
*/
-#ifdef SQLITE_HAVE_ISNAN
-# include <math.h>
-#endif
static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){
int digit;
LONGDOUBLE_TYPE d;
if( (*cnt)++ >= 16 ) return '0';
- digit = (int)floor(*val);
+ digit = (int)*val;
d = digit;
digit += '0';
*val = (*val - d)*10.0;
@@ -21001,6 +20998,9 @@
**
*/
/* #include <stdarg.h> */
+#ifdef SQLITE_HAVE_ISNAN
+# include <math.h>
+#endif
/*
** Routine needed to support the testcase() macro.
@@ -132872,7 +132872,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: sqlite3.c,v 1.7 2013/02/14 17:12:23 martin Exp $
+** $Id: sqlite3.c,v 1.8 2013/02/14 21:07:25 martin Exp $
**
** This file implements an integration between the ICU library
** ("International Components for Unicode", an open-source library
Home |
Main Index |
Thread Index |
Old Index