2005-07-03 17:35:57 -04:00
|
|
|
$OpenBSD: patch-Makefile_am,v 1.4 2005/07/03 21:35:57 jolan Exp $
|
|
|
|
--- Makefile.am.orig Wed Dec 15 22:41:01 2004
|
|
|
|
+++ Makefile.am Sun Jul 3 15:38:47 2005
|
|
|
|
@@ -32,7 +32,6 @@ EXTRA_DIST = \
|
sdl-image-1.2.0 import
This is a simple library to load images of various formats as SDL
surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, TGA,
and TIFF formats.
API:
#include "SDL_image.h"
SDL_Surface *IMG_Load(const char *file);
or
SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc);
or
SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc, char
*type);
where type is a string specifying the format (i.e. "PNG" or "pcx").
Note that IMG_Load_RW cannot load TGA images.
An example program 'showimage' is included, with source in showimage.c
2001-05-07 00:08:40 -04:00
|
|
|
|
2005-07-03 17:35:57 -04:00
|
|
|
libSDL_image_la_LDFLAGS = \
|
|
|
|
-no-undefined \
|
2001-12-23 00:07:55 -05:00
|
|
|
- -release $(LT_RELEASE) \
|
sdl-image-1.2.0 import
This is a simple library to load images of various formats as SDL
surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, TGA,
and TIFF formats.
API:
#include "SDL_image.h"
SDL_Surface *IMG_Load(const char *file);
or
SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc);
or
SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc, char
*type);
where type is a string specifying the format (i.e. "PNG" or "pcx").
Note that IMG_Load_RW cannot load TGA images.
An example program 'showimage' is included, with source in showimage.c
2001-05-07 00:08:40 -04:00
|
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
libSDL_image_la_LIBADD = @IMG_LIBS@
|
|
|
|
|