From owner-svn-src-all@freebsd.org Sun Aug 9 05:54:54 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F73299D60B; Sun, 9 Aug 2015 05:54:54 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 209B1676; Sun, 9 Aug 2015 05:54:54 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t795sso1085306; Sun, 9 Aug 2015 05:54:54 GMT (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t795srDj085305; Sun, 9 Aug 2015 05:54:53 GMT (envelope-from peter@FreeBSD.org) Message-Id: <201508090554.t795srDj085305@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: peter set sender to peter@FreeBSD.org using -f From: Peter Wemm Date: Sun, 9 Aug 2015 05:54:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r286511 - head/lib/libsqlite3 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 05:54:54 -0000 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 \