svn commit: r286511 - head/lib/libsqlite3
Peter Wemm
peter at FreeBSD.org
Sun Aug 9 05:54:54 UTC 2015
Author: peter
Date: Sun Aug 9 05:54:53 2015
New Revision: 286511
URL: https://svnweb.freebsd.org/changeset/base/286511
Log:
Move the USE_PREAD configuration knob out of the middle of the autoconf
generated ones. It is easy to mistake as an option that has gone away
when it's actually a control that was explicitly turned on for FreeBSD.
Modified:
head/lib/libsqlite3/Makefile
Modified: head/lib/libsqlite3/Makefile
==============================================================================
--- head/lib/libsqlite3/Makefile Sun Aug 9 05:44:57 2015 (r286510)
+++ head/lib/libsqlite3/Makefile Sun Aug 9 05:54:53 2015 (r286511)
@@ -12,10 +12,10 @@ SQLITE= ${.CURDIR}/../../contrib/sqlite3
WARNS= 3
CFLAGS+= -I${SQLITE} \
+ -DUSE_PREAD=1 \
-DSTDC_HEADERS=1 \
-DHAVE_SYS_TYPES_H=1 \
-DHAVE_SYS_STAT_H=1 \
- -DUSE_PREAD=1 \
-DHAVE_STDLIB_H=1 \
-DHAVE_STRING_H=1 \
-DHAVE_MEMORY_H=1 \
More information about the svn-src-all
mailing list