diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/kea/kea_1.7.7.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-connectivity/kea/kea_1.7.7.bb b/meta/recipes-connectivity/kea/kea_1.7.7.bb index c69a180833..d2e41e0db2 100644 --- a/meta/recipes-connectivity/kea/kea_1.7.7.bb +++ b/meta/recipes-connectivity/kea/kea_1.7.7.bb | |||
@@ -5,6 +5,8 @@ SECTION = "connectivity" | |||
5 | LICENSE = "MPL-2.0 & Apache-2.0" | 5 | LICENSE = "MPL-2.0 & Apache-2.0" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=68d95543d2096459290a4e6b9ceccffa" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=68d95543d2096459290a4e6b9ceccffa" |
7 | 7 | ||
8 | DEPENDS = "boost log4cplus openssl" | ||
9 | |||
8 | SRC_URI = "\ | 10 | SRC_URI = "\ |
9 | http://ftp.isc.org/isc/kea/${PV}/${BP}.tar.gz \ | 11 | http://ftp.isc.org/isc/kea/${PV}/${BP}.tar.gz \ |
10 | file://0001-remove-AC_TRY_RUN.patch \ | 12 | file://0001-remove-AC_TRY_RUN.patch \ |
@@ -30,6 +32,10 @@ DEBUG_OPTIMIZATION_append_mipsel = " -O" | |||
30 | BUILD_OPTIMIZATION_remove_mipsel = " -Og" | 32 | BUILD_OPTIMIZATION_remove_mipsel = " -Og" |
31 | BUILD_OPTIMIZATION_append_mipsel = " -O" | 33 | BUILD_OPTIMIZATION_append_mipsel = " -O" |
32 | 34 | ||
35 | EXTRA_OECONF = "--with-boost-libs=-lboost_system \ | ||
36 | --with-log4cplus=${STAGING_DIR_TARGET}${prefix} \ | ||
37 | --with-openssl=${STAGING_DIR_TARGET}${prefix}" | ||
38 | |||
33 | do_configure_prepend() { | 39 | do_configure_prepend() { |
34 | # replace abs_top_builddir to avoid introducing the build path | 40 | # replace abs_top_builddir to avoid introducing the build path |
35 | # don't expand the abs_top_builddir on the target as the abs_top_builddir is meanlingless on the target | 41 | # don't expand the abs_top_builddir on the target as the abs_top_builddir is meanlingless on the target |
@@ -49,12 +55,6 @@ do_install_append() { | |||
49 | rm -rf "${D}${localstatedir}" | 55 | rm -rf "${D}${localstatedir}" |
50 | } | 56 | } |
51 | 57 | ||
52 | PACKAGECONFIG ??= "openssl log4cplus boost" | ||
53 | |||
54 | PACKAGECONFIG[openssl] = "--with-openssl=${STAGING_DIR_TARGET}${prefix},,openssl,openssl" | ||
55 | PACKAGECONFIG[log4cplus] = "--with-log4cplus=${STAGING_DIR_TARGET}${prefix},,log4cplus,log4cplus" | ||
56 | PACKAGECONFIG[boost] = "--with-boost-libs=-lboost_system,,boost,boost" | ||
57 | |||
58 | FILES_${PN}-staticdev += "${libdir}/kea/hooks/*.a ${libdir}/hooks/*.a" | 58 | FILES_${PN}-staticdev += "${libdir}/kea/hooks/*.a ${libdir}/hooks/*.a" |
59 | FILES_${PN} += "${libdir}/hooks/*.so" | 59 | FILES_${PN} += "${libdir}/hooks/*.so" |
60 | 60 | ||