Wireshark-bugs: [Wireshark-bugs] [Bug 11146] Cannot build

Date: Mon, 21 Sep 2015 13:19:01 +0000

changed bug 11146


What Removed Added
CC   [email protected]

Comment # 1 on bug 11146 from
This is not a bug for wireshark. but also worth to mention is that it's
something new in build dependency in Ubuntu 15.04:

sudo apt-get install libtool is not enough, still need an extra one:

sudo apt-get install libtool-bin


the reason is related with autogen.sh 
 94 LTVER=`glibtool --version 2>/dev/null | grep ' libtool)' | \
 95     sed 's/.*libtool) \([0-9][0-9.]*\)[^ ]* .*/\1/'`
 96 if test -z "$LTVER"
 97 then
 98         LTVER=`libtool --version | grep ' libtool)' | \
 99             sed 's/.*) \([0-9][0-9.]*\)[^ ]* .*/\1/' `
100         LIBTOOLIZE=libtoolize

where need to run libtool --version,

In Ubuntu 15.04, this requires to install libtool-bin.


You are receiving this mail because:
  • You are watching all bug changes.