projects
/
buildroot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00be67d
)
wireshark: add optional libnl suport
author
Gustavo Zacarias
<gustavo@zacarias.com.ar>
Wed, 2 Dec 2015 20:48:16 +0000
(17:48 -0300)
committer
Peter Korsgaard
<peter@korsgaard.com>
Thu, 3 Dec 2015 21:37:13 +0000
(22:37 +0100)
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/wireshark/wireshark.mk
patch
|
blob
|
history
diff --git
a/package/wireshark/wireshark.mk
b/package/wireshark/wireshark.mk
index 9a8d3706d5bb4c7eb8f1901d634c0cfbeb03613a..d60f3b4d3b874c72e53398527357d5ef35956bb9 100644
(file)
--- a/
package/wireshark/wireshark.mk
+++ b/
package/wireshark/wireshark.mk
@@
-57,4
+57,11
@@
ifeq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_LIBGTK3)$(BR2_PACKAGE_QT5BASE_WIDGETS)
WIRESHARK_CONF_OPTS += --disable-wireshark
endif
+ifeq ($(BR2_PACKAGE_LIBNL),y)
+WIRESHARK_CONF_OPTS += --with-libnl
+WIRESHARK_DEPENDENCIES += libnl
+else
+WIRESHARK_CONF_OPTS += --without-libnl
+endif
+
$(eval $(autotools-package))