diff options
author | Koen Kooi <koen@openembedded.org> | 2007-08-30 17:48:26 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-08-30 17:48:26 +0000 |
commit | 992164d2547b4b91b2b87dcf6bd68490b1b8a865 (patch) | |
tree | 1c55846e0ef5e5f99fa1aaec099188e7dc1f6107 /packages/apt/files | |
parent | a16664a66242758c8b2473b9b2d8900333e0c923 (diff) |
apt: sync with poky
Diffstat (limited to 'packages/apt/files')
-rw-r--r-- | packages/apt/files/apt.conf | 1 | ||||
-rw-r--r-- | packages/apt/files/db_linking_hack.patch | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/packages/apt/files/apt.conf b/packages/apt/files/apt.conf index 6fd653dfcd..9e90616465 100644 --- a/packages/apt/files/apt.conf +++ b/packages/apt/files/apt.conf @@ -29,6 +29,7 @@ Dir "${STAGING_DIR}/" APT { + Install-Recommends "true"; Immediate-Configure "false"; Architecture "i586"; Get diff --git a/packages/apt/files/db_linking_hack.patch b/packages/apt/files/db_linking_hack.patch new file mode 100644 index 0000000000..3c8368b1ed --- /dev/null +++ b/packages/apt/files/db_linking_hack.patch @@ -0,0 +1,27 @@ +Index: apt-0.7.3/configure.in +=================================================================== +--- apt-0.7.3.orig/configure.in 2007-07-01 10:38:45.000000000 +0000 ++++ apt-0.7.3/configure.in 2007-08-21 13:39:26.000000000 +0000 +@@ -67,8 +67,20 @@ + [AC_DEFINE(HAVE_BDB) + BDBLIB="-ldb" + AC_MSG_RESULT(yes)], +- [BDBLIB="" +- AC_MSG_RESULT(no)] ++ ++ LIBS="$LIBS -lpthread" ++ [AC_MSG_CHECKING(if we can link against BerkeleyDB with pthread) ++ AC_LINK_IFELSE( ++ [AC_LANG_PROGRAM( ++ [#include <db.h>], ++ [int r, s, t; db_version(&r, &s, &t);] ++ )], ++ [AC_DEFINE(HAVE_BDB) ++ BDBLIB="-ldb -lpthread" ++ AC_MSG_RESULT(yes)], ++ [BDBLIB="" ++ AC_MSG_RESULT(no)] ++ )] + )] + ) + |