Yet another post in the series of compilation failures due to unexpected libraries paths.
This time, it is about Yersinia and the ncurses library. I made the following yersinia-opensuse11.1 patch which should work for openSUSE 11.1 and maybe other versions or distros.
Related posts:





How to apply this patch, because I always get this
patch: **** Only garbage was found in the patch input.
error message when trying to apply it using command
patch -u -p0 > yersinia-opensuse11.1.patch
You have a typo (>), and you should not use “-u” for this patch format.
So, just :
patch -p0 < yersinia-opensuse11.1.patch
Thanks for the patch, i was getting crazy compiling yersinia.
Great work.