diff mbox

wireshark: explicitly disable libsmi

Message ID e3a671643f7a6f4508e3abeec73ae3bec032834f.1362300524.git.baruch@tkos.co.il
State Accepted
Commit 6afbd13c2a22783d6815b0b58e604646375da1a7
Headers show

Commit Message

Baruch Siach March 3, 2013, 8:55 a.m. UTC
wireshark's libsmi detection is not cross compile friendly. We don't have
libsmi in Buildroot yet anyway, so just disable support for it in wireshark.

Fixes
http://autobuild.buildroot.net/results/0daaa3dd74315ac901920e7daf89620ef4c088a0

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/wireshark/wireshark.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard March 4, 2013, 11:23 a.m. UTC | #1
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 Baruch> wireshark's libsmi detection is not cross compile friendly. We
 Baruch> don't have libsmi in Buildroot yet anyway, so just disable
 Baruch> support for it in wireshark.

Committed, thanks.
diff mbox

Patch

diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk
index 2e89987..c9fb44b 100644
--- a/package/wireshark/wireshark.mk
+++ b/package/wireshark/wireshark.mk
@@ -17,7 +17,7 @@  WIRESHARK_CONF_ENV = LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config \
 # wireshark adds -I$includedir to CFLAGS, causing host/target headers mixup.
 # Work around it by pointing includedir at staging
 WIRESHARK_CONF_OPT = --disable-wireshark --without-krb5 --disable-usr-local \
-		     --enable-static=no --with-gnutls=no \
+		     --enable-static=no --with-gnutls=no --with-libsmi=no \
 		     --includedir=$(STAGING_DIR)/usr/include
 
 $(eval $(call autotools-package))