2002-09-03 02:19:18 -04:00
|
|
|
$OpenBSD: patch-Makefile_am,v 1.3 2002/09/03 06:19:18 mark Exp $
|
|
|
|
--- Makefile.am.orig Sun Sep 23 16:24:28 2001
|
|
|
|
+++ Makefile.am Mon Sep 2 23:12:41 2002
|
2001-12-23 00:07:55 -05:00
|
|
|
@@ -31,7 +31,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
|
|
|
autogen.sh
|
|
|
|
|
|
|
|
libSDL_image_la_LDFLAGS = \
|
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@
|
|
|
|
|