diff options
author | Phil Blundell <philb@gnu.org> | 2012-09-22 17:50:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-24 11:30:35 +0100 |
commit | 4d741c106cd6c657a353a2cf89af58a2d3b611b6 (patch) | |
tree | f9ccd2719fe4d287277226b600b8f1be63b25366 /meta/recipes-support/sqlite/sqlite3.inc | |
parent | 9ee8e2fae8b1d0b4d80378ee67e6366033863f6f (diff) | |
download | poky-4d741c106cd6c657a353a2cf89af58a2d3b611b6.tar.gz |
sqlite3: enable USE_PREAD
This gives a small but measureable performance improvement for
I/O heavy workloads.
(From OE-Core rev: e4bd65e68c3d0dd798ff69c2e9491e5b2dcafdc3)
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3.inc')
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc index 0cc5d65b72..70841f88cb 100644 --- a/meta/recipes-support/sqlite/sqlite3.inc +++ b/meta/recipes-support/sqlite/sqlite3.inc | |||
@@ -17,6 +17,10 @@ export config_TARGET_LINK = "${CCLD}" | |||
17 | export config_TARGET_CFLAGS = "${CFLAGS}" | 17 | export config_TARGET_CFLAGS = "${CFLAGS}" |
18 | export config_TARGET_LFLAGS = "${LDFLAGS}" | 18 | export config_TARGET_LFLAGS = "${LDFLAGS}" |
19 | 19 | ||
20 | # pread() is in POSIX.1-2001 so any reasonable system must surely support it | ||
21 | BUILD_CFLAGS += "-DUSE_PREAD" | ||
22 | TARGET_CFLAGS += "-DUSE_PREAD" | ||
23 | |||
20 | PACKAGES = "lib${BPN} lib${BPN}-dev lib${BPN}-doc ${PN}-dbg lib${BPN}-staticdev ${PN}" | 24 | PACKAGES = "lib${BPN} lib${BPN}-dev lib${BPN}-doc ${PN}-dbg lib${BPN}-staticdev ${PN}" |
21 | 25 | ||
22 | FILES_${PN} = "${bindir}/*" | 26 | FILES_${PN} = "${bindir}/*" |