mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
I found that Mono.Data.SQlite has a dependency on the column meta-data API, thus enabling this API enables use of Hibernate / Mono with SQLite and no doubt enables other ORMs / utility libraries. ref: https://bugzilla.xamarin.com/show_bug.cgi?id=6333 The API is present in the used SQLite3 sqlite-autoconf-3080002 source-base. Thus we are enabling pre-existing SQLite support rather than introducing new code. I am not aware of any issues that enabling this SQLite functionality introduces, other than a slightly increased library size of circa 1.5KB , i.e. coretexa9_vfp_neon i.MX6 - with column meta-data API 610360 libsqlite3.so.0.8.6 - without column meta-data API 608880 libsqlite3.so.0.8.6 (From OE-Core rev: 9fb82ebab552d1808bae3b4898dd05022913165b) Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
492 B
BlitzBasic
16 lines
492 B
BlitzBasic
require sqlite3.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0"
|
|
|
|
SRC_URI = "http://www.sqlite.org/2013/sqlite-autoconf-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "6d6cc639a4da04fbbdda7b1a1a01b386"
|
|
SRC_URI[sha256sum] = "fca3a0a12f94dc92a6d9e700c3f6cab6cd4e79214bd7b6f13717a10f4bcfddb2"
|
|
|
|
S = "${WORKDIR}/sqlite-autoconf-${PV}"
|
|
|
|
# Provide column meta-data API
|
|
BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA"
|
|
TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA"
|
|
|