Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Aug 2015 05:54:53 +0000 (UTC)
From:      Peter Wemm <peter@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r286511 - head/lib/libsqlite3
Message-ID:  <201508090554.t795srDj085305@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508090554.t795srDj085305>