README-linux.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. ================================================================================
  2. Simple DirectMedia Layer for Linux
  3. ================================================================================
  4. By default SDL will only link against glibc, the rest of the features will be
  5. enabled dynamically at runtime depending on the available features on the target
  6. system. So, for example if you built SDL with Xinerama support and the target
  7. system does not have the Xinerama libraries installed, it will be disabled
  8. at runtime, and you won't get a missing library error, at least with the
  9. default configuration parameters.
  10. ================================================================================
  11. Build Dependencies
  12. ================================================================================
  13. Ubuntu 13.04, all available features enabled:
  14. sudo apt-get install build-essential mercurial make cmake autoconf automake \
  15. libtool libasound2-dev libpulse-dev libaudio-dev libx11-dev libxext-dev \
  16. libxrandr-dev libxcursor-dev libxi-dev libxinerama-dev libxxf86vm-dev \
  17. libxss-dev libgl1-mesa-dev libesd0-dev libdbus-1-dev libudev-dev \
  18. libgles1-mesa-dev libgles2-mesa-dev libegl1-mesa-dev
  19. NOTES:
  20. - This includes all the audio targets except arts, because Ubuntu pulled the
  21. artsc0-dev package, but in theory SDL still supports it.
  22. - DirectFB isn't included because the configure script (currently) fails to find
  23. it at all. You can do "sudo apt-get install libdirectfb-dev" and fix the
  24. configure script to include DirectFB support. Send patches. :)