Hi, I built wireshark 2.2.4 in cent os using following command: make uninstall, ./autogen.sh, ./configure, make clean, make, make install, Now for some internal purpose I want to change copyright info in Help>About Wireshark>Wireshark. How to that? P.S: I went through code and found that get_copyright_info() in wsutil/copyright_info.c is the function to change. But it seems ws_version_info.c has dependency on copyright_info.c and ws_version_info.c has soft link with wiretap/ws_version_info.c. So if i change any of the ws_version_info.c it will throw compilation error. asked 13 Jul '17, 01:19 Abhisek |
2 Answers:
Yes it is.
Yes, if you build with autotools, the build process makes
First of all, you don't need to change Second, the only version of answered 15 Jul '17, 22:39 Guy Harris ♦♦ This is the answer I am waiting... Thanks a lot... One thing I want to share, though i changed only the top level ws_version_info.c, the compilation was failed by autotool... So any idea on that? (16 Jul '17, 00:03) Abhisek
You probably did something wrong. Nobody else has reported a problem when they edited the top-level (16 Jul '17, 00:50) Guy Harris ♦♦ |
If modifying the string returned by How are you modifying the info, presumably you ARE just changing the string contents? What ARE the build errors you get? answered 14 Jul '17, 01:25 grahamb ♦ |
I don't get it, if you change the text in get_copyright_info() and recompile it does not work?
I am afraid of trying the change and re-compilation, because I had a bad experience with ws_version_info.c file change.If you even touch the file ws_version_info.c the whole wireshark code will not further compile any more time. Now I already modified many wireshark file as per my needs, so if in this moment if i try to change wsutil/copyright_info.c(which is a dependent of ws_version_info.c), it may push me to do a hell of lot rework. So my request/question is that anyone have any idea on changing wsutil/copyright_info.c and successfully recompilation after that OR any other way to change copyright information.