0

I'm trying to install a custom Mightex software and at some point I get the following error message:

configure: error: Cannot find required SDL library.

So after googling I found this page

I typed:

sudo apt-get install libsdl2-2.0-0

but the error persisted after the installation and now I'm at a loss.. Any ideas?

EDIT:

I'm running Ubuntu 14.04

After recommendations I also installed libsdl2-dev but that didn't change anything. My output from running ld -lSDL --verbose is here. Unfortunately I can give limited information about the software I'm trying to install as it's proprietary.

evan54
  • 745

1 Answers1

0

So the package that needed to be installed is libsdl1.2-dev.

sudo apt-get install libsdl1.2-dev
evan54
  • 745