diff options
author | Stanislav Bogatyrev <realloc@gmail.com> | 2010-11-15 16:23:30 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-19 10:45:03 +0100 |
commit | e5edc7338175f8cbbf2d90c5d6be7ccc39bd94e2 (patch) | |
tree | df1ef596e637b041a201e2deb5f3ca7f1c833eaf | |
parent | aa59aeb6b5efda44f5f6f93a913cbda9d6a15576 (diff) |
pciutils: compilation failed with zlib enabled because it lacks a dependency
Closes #2797
Signed-off-by: Stanislav Bogatyrev <realloc@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | package/pciutils/pciutils.mk | 1 |
2 files changed, 4 insertions, 2 deletions
@@ -3,13 +3,14 @@ Fixes all over the tree. Updated/fixed packages: bash, bind, busybox, libglib2, libmad, - midori, module-init-tools, mtd-utils, openssh, qt, sqlite, - webkit + midori, module-init-tools, mtd-utils, openssh, pciutils, qt, + sqlite, webkit Issues resolved (http://bugs.uclibc.org): #2479: host-module-init-tools 3.11 fails to build #2785: mtd-utils build fails due to missing libmtd + #2797: pciutils dependencies on zlib not taken into account #2809: failed to compile libglib2 #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6... diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk index a7d999664..6e163006b 100644 --- a/package/pciutils/pciutils.mk +++ b/package/pciutils/pciutils.mk @@ -8,6 +8,7 @@ PCIUTILS_VERSION = 3.1.7 PCIUTILS_SITE = ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci ifeq ($(BR2_PACKAGE_ZLIB),y) PCIUTILS_ZLIB=yes + PCIUTILS_DEPENDENCIES += zlib else PCIUTILS_ZLIB=no endif |