diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-11-15 17:16:26 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-11-15 17:16:26 +0000 |
commit | 46a0af08c57518f16c489588caa93bff791ad74e (patch) | |
tree | 8b9bb67339470fa74898a103951588c33c4d1b61 /packages/db/db_4.3.29.bb | |
parent | 788c17586397848cf645faf2b280e302faa47306 (diff) |
db: fix thumb uclibc operation in 4.3.29
- uclibc thumb builds were using libpthread to implement mutexes, the
- uclibc version seems to be a stub (at least on thumb). This commit
- fixes the ARM/gcc-assembly mutex implementation so that it has thumb
- support and the resultant db4 works (tested on LE Thumb uclibc)
Diffstat (limited to 'packages/db/db_4.3.29.bb')
-rw-r--r-- | packages/db/db_4.3.29.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/db/db_4.3.29.bb b/packages/db/db_4.3.29.bb index ba11e12901..31b0b91367 100644 --- a/packages/db/db_4.3.29.bb +++ b/packages/db/db_4.3.29.bb @@ -14,10 +14,11 @@ HOMEPAGE = "http://www.sleepycat.com" LICENSE = "BSD Sleepycat" VIRTUAL_NAME ?= "virtual/db" CONFLICTS = "db3" -PR = "r0" +PR = "r1" SRC_URI = "http://downloads.sleepycat.com/db-${PV}.tar.gz" #SRC_URI_MD5 = "http://downloads.sleepycat.com/db-${PV}.tar.gz.md5" +SRC_URI += "file://arm-thumb-mutex.patch;patch=1" inherit autotools @@ -60,7 +61,6 @@ EXTRA_OECONF = "${DB4_CONFIG}" # These enable the ARM assembler mutex code, this won't # work with thumb compilation... ARM_MUTEX = "--with-mutex=ARM/gcc-assembly" -ARM_MUTEX_thumb = "" MUTEX = "" MUTEX_arm = "${ARM_MUTEX}" MUTEX_armeb = "${ARM_MUTEX}" |