diff options
author | Mei Lei <lei.mei@intel.com> | 2011-08-05 09:52:15 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-08 13:41:20 +0100 |
commit | 2a4de1ef1f39f24ecd7c3bae06914031d9943dcd (patch) | |
tree | da2bf1daab38cfcce2d08eb519b65f5d284c0211 /meta/recipes-support | |
parent | 74f64be449a50f31a5609637a72ecaa8480b28a9 (diff) | |
download | poky-2a4de1ef1f39f24ecd7c3bae06914031d9943dcd.tar.gz |
apr-util: disable pqsql support to avoid configure error
The pqsql config script will check host path and add host paths to compiler and linker options:
adding "-I/usr/include/postgresql" to CPPFLAGS
adding "-L/usr/lib" to LDFLAGS
Disable pqsql support since we didn't use this feature in other recipes.
(From OE-Core rev: a0034efba2c5960ef946de318438794acb13f454)
Signed-off-by: Mei Lei <lei.mei@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/apr/apr-util_1.3.12.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/apr/apr-util_1.3.12.bb b/meta/recipes-support/apr/apr-util_1.3.12.bb index 6635202da5..800e67e4cb 100644 --- a/meta/recipes-support/apr/apr-util_1.3.12.bb +++ b/meta/recipes-support/apr/apr-util_1.3.12.bb | |||
@@ -7,7 +7,7 @@ LICENSE = "Apache-2.0" | |||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=519e0a18e03f7c023070568c14b077bb \ | 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=519e0a18e03f7c023070568c14b077bb \ |
8 | file://include/apu_version.h;endline=17;md5=806685a84e71f10c80144c48eb35df42" | 8 | file://include/apu_version.h;endline=17;md5=806685a84e71f10c80144c48eb35df42" |
9 | 9 | ||
10 | PR = "r0" | 10 | PR = "r1" |
11 | 11 | ||
12 | SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.gz \ | 12 | SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.gz \ |
13 | file://configfix.patch \ | 13 | file://configfix.patch \ |
@@ -18,6 +18,7 @@ SRC_URI[sha256sum] = "815b6fc82950f61050a5e711a7f3c20fd9b6ffcc7a4cacfe9f291fb241 | |||
18 | 18 | ||
19 | EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \ | 19 | EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \ |
20 | --without-odbc \ | 20 | --without-odbc \ |
21 | --without-pgsql \ | ||
21 | --with-dbm=gdbm \ | 22 | --with-dbm=gdbm \ |
22 | --with-gdbm=${STAGING_DIR_HOST}${prefix} \ | 23 | --with-gdbm=${STAGING_DIR_HOST}${prefix} \ |
23 | --without-sqlite2 \ | 24 | --without-sqlite2 \ |