Browse Source

stress-ng: add libjpeg dep

Fixes: https://github.com/openwrt/packages/issues/19210

If libjpeg isn't selected by another package, all is fine.
But if it is selected, the stress-ng build will see it and try to build the
jpeg stressor. This would usually fail sometime and link-time.

In any case, it's better to just pick-up libjpeg as a dependency of
stress-ng. If people want to stress their system with this tool, they can
probably expect libjpeg as well.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
(cherry picked from commit fc6f44b13a)
lilik-openwrt-22.03
Alexandru Ardelean 2 years ago
committed by Josef Schlehofer
parent
commit
9646958beb
No known key found for this signature in database GPG Key ID: B950216FE4329F4C
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/stress-ng/Makefile

+ 1
- 1
utils/stress-ng/Makefile View File

@ -27,7 +27,7 @@ define Package/stress-ng
CATEGORY:=Utilities
TITLE:=stress-ng is a stress test utility
URL:=https://github.com/ColinIanKing/stress-ng
DEPENDS:=+zlib +libbsd +libaio +libsctp +libkmod +libatomic
DEPENDS:=+zlib +libbsd +libaio +libsctp +libkmod +libatomic +libjpeg
endef
define Package/stress-ng/description


Loading…
Cancel
Save