diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-01 12:50:15 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-03 15:13:24 +0100 |
commit | e75ae8f50af3effe560c43fc63cfd1f39395f011 (patch) | |
tree | 2d7dcd85459dc2acbc3ed7bd9d8630964ec5f2df | |
parent | 80546bfd70e887471a0a06c3daa6c7e497fb0713 (diff) | |
download | meta-openembedded-dora.tar.gz |
gdal: fix sqlite, expat and libtiff detectiondora
* fixes following configure errors like:
checking for SQLite3 library >= 3.0.0... yes
cat: /OE/sysroots/qemux86/usr/lib/include/sqlite3.h: No such file or directory
/OE/work/i586-starfish-linux/gdal/1.10.1-r0/gdal-1.10.1/configure:
line 25411: test: !=: unary operator expected
configure: WARNING: Can not find SQLITE_VERSION macro in sqlite3.h
header to retrieve SQLite version!
* and autodetected expat support which sometimes tries to use host
version from /usr/include
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-navigation/gdal/gdal_1.10.1.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-oe/recipes-navigation/gdal/gdal_1.10.1.bb b/meta-oe/recipes-navigation/gdal/gdal_1.10.1.bb index ce8574e92..6517eef8e 100644 --- a/meta-oe/recipes-navigation/gdal/gdal_1.10.1.bb +++ b/meta-oe/recipes-navigation/gdal/gdal_1.10.1.bb | |||
@@ -79,8 +79,9 @@ EXTRA_OECONF = "--without-perl \ | |||
79 | --with-pcraster=internal \ | 79 | --with-pcraster=internal \ |
80 | --with-geotiff=internal \ | 80 | --with-geotiff=internal \ |
81 | \ | 81 | \ |
82 | --with-sqlite3=${STAGING_LIBDIR} \ | 82 | --with-sqlite3=${STAGING_EXECPREFIXDIR} \ |
83 | --with-libtiff=${STAGING_LIBDIR} \ | 83 | --with-libtiff=${STAGING_EXECPREFIXDIR} \ |
84 | --with-expat=${STAGING_EXECPREFIXDIR} \ | ||
84 | " | 85 | " |
85 | 86 | ||
86 | EXTRA_OEMAKE += "INST_DATA="${datadir}/gdal"" | 87 | EXTRA_OEMAKE += "INST_DATA="${datadir}/gdal"" |