annotate src/video/svga/Makefile.am @ 916:46916168361d
Date: Sun, 25 Jul 2004 23:10:03 +0800
From: Chris Taylor
Subject: SDL for Macintosh Programmer's Workshop: removed dynamic loading
I'm working on a game called D2X which uses SDL, and I recently ported
it to Mac OS 9. I used MPW to build it. It uses OpenGL. To get it to
work, I had to build SDL so it doesn't dynamically load OpenGL. This is
because I don't think MPW supports dynamic loading. The following patch
makes sure when SDL is built under MPW, dynamic loading of shared
libraries is disabled.
author |
Sam Lantinga <slouken@libsdl.org> |
date |
Sun, 25 Jul 2004 19:43:56 +0000 |
parents |
74212992fb08 |
children |
|
rev |
line source |
0
|
1
|
|
2 ## Makefile.am for SDL using the SVGAlib video driver
|
|
3
|
|
4 noinst_LTLIBRARIES = libvideo_svga.la
|
|
5 libvideo_svga_la_SOURCES = $(SVGA_SRCS)
|
|
6
|
|
7 # The SDL SVGAlib video driver sources
|
|
8 SVGA_SRCS = \
|
|
9 SDL_svgavideo.h \
|
|
10 SDL_svgaevents.c \
|
|
11 SDL_svgaevents_c.h \
|
|
12 SDL_svgamouse.c \
|
|
13 SDL_svgamouse_c.h \
|
|
14 SDL_svgavideo.c
|
|
15
|