Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6]: src/external/public-domain/sqlite Pull up following revision(...



details:   https://anonhg.NetBSD.org/src/rev/e515fd82f4ca
branches:  netbsd-6
changeset: 774185:e515fd82f4ca
user:      riz <riz%NetBSD.org@localhost>
date:      Mon Jun 11 23:15:38 2012 +0000

description:
Pull up following revision(s) (requested by wiz in ticket #303):
        external/public-domain/sqlite/Makefile.inc: revision 1.5
Make HAVE_* define match what configure finds.
In particular, this enables usleep(3) (compared to using sleep(3) before).
ok joerg@

diffstat:

 external/public-domain/sqlite/Makefile.inc |  18 +++++++++++++-----
 1 files changed, 13 insertions(+), 5 deletions(-)

diffs (33 lines):

diff -r d0771eca620e -r e515fd82f4ca external/public-domain/sqlite/Makefile.inc
--- a/external/public-domain/sqlite/Makefile.inc        Mon Jun 11 23:09:24 2012 +0000
+++ b/external/public-domain/sqlite/Makefile.inc        Mon Jun 11 23:15:38 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.3.2.1 2012/06/11 17:51:41 riz Exp $
+# $NetBSD: Makefile.inc,v 1.3.2.2 2012/06/11 23:15:38 riz Exp $
 
 WARNS=         2
 
@@ -6,11 +6,19 @@
 
 .PATH: ${SRCDIR}
 
-CPPFLAGS+=     -DHAVE_READLINE=1 -DHAVE_LOCALTIME_R \
-               -DSQLITE_HAVE_ISNAN -DSQLITE_ENABLE_FTS4 \
+CPPFLAGS+=     \
+               -DHAVE_GMTIME_R=1 \
+               -DHAVE_INTTYPES_H=1 \
+               -DHAVE_LOCALTIME_R=1 \
+               -DHAVE_READLINE=1 \
+               -DHAVE_STDINT_H=1 \
+               -DHAVE_STRERROR_R=1 \
+               -DHAVE_USLEEP=1 \
+               -DSQLITE_ENABLE_COLUMN_METADATA \
                -DSQLITE_ENABLE_FTS3_PARENTHESIS \
-               -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+               -DSQLITE_ENABLE_FTS4 \
                -DSQLITE_ENABLE_LOAD_EXTENSION \
-               -DSQLITE_ENABLE_COLUMN_METADATA
+               -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+               -DSQLITE_HAVE_ISNAN
 
 CWARNFLAGS+=   -Wno-shadow -Wno-unused



Home | Main Index | Thread Index | Old Index