I'm getting the following build error when trying to create my plugin
filesystem.h was moved to the wsutil for 1.12 according to the changelog. I can also see from the mailing list it was moved because it was more of an appropriate place. The reasons was something along the lines of filesystem is used by the system and not just dissectors. I can see by using grep that mate and wimaxasncp have an include for it. So it looks like I should still be able to link to the code. What should I be looking at to troubleshoot this? asked 12 Aug '14, 13:01 tlann |
One Answer:
Ensure to modify your makefile (Makefile.nmake as you seem to be running on Windows) so as to link with libwsutil.lib. answered 12 Aug '14, 14:04 Pascal Quantin |
Thank you. That worked.