summaryrefslogtreecommitdiffstats
path: root/package/sdl_image
Commit message (Collapse)AuthorAgeFilesLines
* SDL_image: fix runtime libjpeg failureBaruch Siach2009-11-231-0/+3
| | | | | | | | | | | | | | | | | By default SDL_image loads libjpeg at runtime on-demand. The find_lib routine in the configure script of SDL_image searches the /usr/lib directory of the host machine to find the file name of the jpeg library. When the host on which Buildroot is being built contains newer version of libjpeg (e.g. libjpeg7), the configure script incorrectly uses its file name. The result is a runtime failure to load libjpeg. Fix this by disabling runtime load of libjpeg. [Peter: disable for png+tiff as well] Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sdl-image: convert to Makefile.autotools.in formatPeter Korsgaard2008-11-021-149/+27
|
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-12/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* package: sdl_image packagePeter Korsgaard2008-07-172-0/+223
Based on patch by artemys. Closes #4194