Hi, I am building wireshark 2.2.4 in centOs. I used commands: make uninstall, ./autogen.sh, ./configure, make clean, make, make install. For some internal purpose I need to change the version 2.2.4 to 13.0.1 in Help>About Wireshark>wireshark. which set of files I need to change? asked 10 Jul '17, 02:06 Abhisek |
One Answer:
That would be in the top of configure.ac. answered 10 Jul '17, 02:19 Jaap ♦ |
Thanks a lot man... I build by changing m4_define([version_major], [2]) m4_define([version_minor], [2]) m4_define([version_micro], [4]) to my desired version... I don't have enough reputation currently so please somebody select Japp answer as the correct answer.
Your answer has been converted to a comment as that's how this site works. Please read the FAQ for more information.
If an answer has solved your issue, please accept the answer for the benefit of other users by clicking the checkmark icon next to the answer. Please read the FAQ for more information.
To choose an answer as a correct one you do not need any reputation, the only person who can do so is the author of the question regardless how much reputation points they have. There are two icons, thumbs up and checkmark, and the right one to use is the checkmark one.
Done......