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/dist Back out part of previous...



details:   https://anonhg.NetBSD.org/src/rev/d038582eb4b2
branches:  trunk
changeset: 773568:d038582eb4b2
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Feb 06 17:24:49 2012 +0000

description:
Back out part of previous commit (no reason to define SQLITE_BIG_DBL
especially for VAX since it uses DBL_MAX from the VAX <float.h>).

diffstat:

 external/public-domain/sqlite/dist/sqlite3.c |  8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diffs (25 lines):

diff -r 7a89e582c991 -r d038582eb4b2 external/public-domain/sqlite/dist/sqlite3.c
--- a/external/public-domain/sqlite/dist/sqlite3.c      Mon Feb 06 15:58:56 2012 +0000
+++ b/external/public-domain/sqlite/dist/sqlite3.c      Mon Feb 06 17:24:49 2012 +0000
@@ -7792,11 +7792,7 @@
 # endif
 #endif
 #ifndef SQLITE_BIG_DBL
-# ifdef __vax__
-#  define SQLITE_BIG_DBL (1e38)
-# else
-#  define SQLITE_BIG_DBL (1e99)
-# endif
+# define SQLITE_BIG_DBL (1e99)
 #endif
 #ifndef SQLITE_HUGE_DBL
 # define SQLITE_HUGE_DBL (1.0e+308)
@@ -132876,7 +132872,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: sqlite3.c,v 1.5 2012/02/05 17:55:12 matt Exp $
+** $Id: sqlite3.c,v 1.6 2012/02/06 17:24:49 matt 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