diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-07-11 06:41:36 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-11 06:41:36 +0000 |
commit | 1e39f124d5209caa27fd21120bbdaab7161cb10f (patch) | |
tree | 2e874663fd05362434fcd3328d1707e5369779da /packages/cyrus-sasl/cyrus-sasl_2.1.19.bb | |
parent | 0bcd91eb462f38f1f0e0df324fda1ca41c823202 (diff) |
This is an attempt to regularise the dependencies of cyrus-sasl, the
package will now reliably use BerkeleyDB 4.3 (like cyrus-imapd and
unlike the previous incarnation which failed to even look for it).
It will also *not* link against libpam - this would happen before if
libpam was built, but it is extremely unlikely at present that libpam
works correctly on any OE system.
Diffstat (limited to 'packages/cyrus-sasl/cyrus-sasl_2.1.19.bb')
-rw-r--r-- | packages/cyrus-sasl/cyrus-sasl_2.1.19.bb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb b/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb index ca34acbfc7..19f1206f18 100644 --- a/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb +++ b/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb @@ -1,10 +1,11 @@ SECTION = "console/network" -DEPENDS = "db3" +DEPENDS = "db openssl" DESCRIPTION = "Generic client/server library for SASL authentication." LICENSE = "BSD" -PR = "r1" +PR = "r2" -SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-${PV}.tar.gz" +SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-${PV}.tar.gz \ + file://berkdb.m4.patch;patch=1" inherit autotools @@ -12,10 +13,12 @@ acpaths = "-I ${S}/cmulocal -I ${S}/config -I ." CFLAGS_append = " -I${S}/include -I${S}/saslauthd/include" EXTRA_OECONF = "--enable-shared --enable-static --with-dblib=berkeley \ --with-bdb-libdir=${STAGING_LIBDIR} \ - --with-bdb-incdir=${STAGING_INCDIR} \ + --with-bdb-incdir=${STAGING_INCDIR}/db4 \ + --without-pam \ --without-opie --without-des" FILES_${PN} += "${prefix}/lib/sasl2/*.so*" +FILES_${PN}-dev += "${libdir}/sasl2/*.la ${libdir}/sasl2/*.a" do_configure_prepend () { rm -f acinclude.m4 config/libtool.m4 |