diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-11-11 07:15:36 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-11-11 07:15:36 +0000 |
commit | 1c60e3ea33243897f1159d617a0bf0fb9e5916f3 (patch) | |
tree | 9c07ba79b1bd4132216ca513c55faf5df5a74c66 /packages/cyrus-imapd/cyrus-imapd_2.2.12.bb | |
parent | 82111b6f46d1afcb5d480fceaabc6822403e1867 (diff) |
db: fix db3/db4 confusion by causing all packages to use virtual/db in db-4.3 4.3.29
- The SleepyCat implementation of the Berkeley DB exists in OE in two different
- versions, 3.2 and 4.3. These appear to now be compatible (i.e. with the correct
- settings db-4.3 can do everything db-3.2 can do and all packages compile with it).
- The previous scheme of allowing both to be built (which was highly error prone)
- has been removed and all db users now reference virtual/db.
- Affects:
- bogofilter, cyrus-*, openldap, perl, postfix, rpm
Diffstat (limited to 'packages/cyrus-imapd/cyrus-imapd_2.2.12.bb')
-rw-r--r-- | packages/cyrus-imapd/cyrus-imapd_2.2.12.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb b/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb index e1290ef1f9..72dc846e24 100644 --- a/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb +++ b/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb @@ -1,7 +1,7 @@ SECTION = "console/network" -DEPENDS = "cyrus-sasl db3" +DEPENDS = "cyrus-sasl virtual/db" LICENSE = "BSD" -PR = "r6" +PR = "r7" DEPENDS += "install-native" SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-imapd-${PV}.tar.gz \ @@ -18,16 +18,16 @@ inherit autotools update-rc.d INITSCRIPT_NAME = "cyrus" INITSCRIPT_PARAMS = "start 56 3 4 5 . stop 15 0 1 6 ." +TARGET_LDFLAGS_append_thumb = " -lpthread" EXTRA_OECONF = "--with-auth=unix \ + --with-dblib=berkeley \ + --with-bdb-libdir=${STAGING_LIBDIR} \ + --with-bdb-incdir=${STAGING_INCDIR} \ --without-perl \ --without-snmp" FILES_${PN} += "${prefix}/cyrus/bin" -# Target only, the db4 headers are in include/db4, so *prepend* this -# directory to the search path -TARGET_CPPFLAGS =+ "-I${STAGING_DIR}/${TARGET_SYS}/include/db4" - # All, lib/foo.c includes <config.h> from the top level directory and # is natively compiled BUILD_CPPFLAGS += " -I${S} -I${S}/et" |