I have built SDL in a folder ~/project/extra/SDL/
and I'm trying to build SDL_image in ~project/extra/SDL_image
. SDL is not installed, the project is statically linking to the ~/project/extra/SDL/build/.libs/*.a
library.
How do I configure SDL_image to build with built version of SDL?
./configure --with-sdl-prefix=../SDL/build/.libs --with-sdl-exec-prefix=../SDL/build
is not workin.