Makefile does not make use of pkg-config
Hi,
I am packaging toxic for Guix at the moment, and your Makefile does not seem to make full use of pkg-config, otherwise the ncurses and libnotify in Guix would've been picked up.
See this thread for more details on the failure: https://lists.gnu.org/archive/html/guix-devel/2016-08/msg01393.html I can make the full result and environment values etc available if you need to take a look at more verbose errors.
Can you solve this bug, ie let pkg-config find ncurses and libnotify, or do you require help with this?
@Ansa89 would probably know more about this than me.
ATM I'm really busy, but I'll try to take a look at it.
EDIT: the command used to check libraries is $(shell pkg-config --exists LIB_NAME || echo -n "error"); in this case the commands will be pkg-config --exists libnotify || echo -n "error" and pkg-config --exists ncursesw || echo -n "error".
What is the output of these commands, when you run them in your terminal?
Closing due to inactivity