diff options
author | peter <peter@FreeBSD.org> | 2015-08-09 05:54:53 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2015-08-09 05:54:53 +0000 |
commit | 3499c2f483bd3ec18f46cefaddc2f3fb33fb1c7d (patch) | |
tree | ada7bdcfa39a93886d7abe8110a6b3b117c19070 /lib/libsqlite3/Makefile | |
parent | 486dfaf4e001b6205a142dc3465adb9adc5181b3 (diff) | |
download | FreeBSD-src-3499c2f483bd3ec18f46cefaddc2f3fb33fb1c7d.zip FreeBSD-src-3499c2f483bd3ec18f46cefaddc2f3fb33fb1c7d.tar.gz |
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.
Diffstat (limited to 'lib/libsqlite3/Makefile')
-rw-r--r-- | lib/libsqlite3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libsqlite3/Makefile b/lib/libsqlite3/Makefile index 2db85fb..d446151 100644 --- a/lib/libsqlite3/Makefile +++ b/lib/libsqlite3/Makefile @@ -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 \ |