Sometimes, while building a source package using the "./configure - make - sudo make install" commands under Ubuntu or any other Debian-based system, we may receive this error in the terminal: configure: error: SDL/SDL.h header file not found
A possible fix for this type of error is to install this package:
sudo apt-get install libsdl-dev
Re-build again your source package and the error will disappear.
Post a Comment