I have a dependency: SDL_ttf - which I've successively compiled and install(make && make install). It install it in /usr/local, i.e. headers in /usr/local/include .
when I run ./configure on my target project - it tries to check SDL_ttf - and finds it for linker, but can't see headers (SDL/SDL_ttf.h) I even copy SDL dir from /usr/local/include to /usr/include - no success.
It always say me:
checking for SDL/SDL_ttf.h... (cached) no
I can't understand this "(cached)" - I remove all possible *.cache files. and I don't use -C options...
It's seems like there is a "global" cache for ./configure somewhere - but this sounds very strange of course....