Mercurial > sdl-ios-xcode
annotate src/video/x11/Makefile.am @ 26:c447d5b9275d
Date: Wed, 9 May 2001 18:03:20 -0600
From: Peter Valchev <pvalchev@openbsd.org>
Subject: openbsd patches
- The dlsym() one is supposed to fix dynamic loading on our a.out
architectures, where prefixing of an underscore symbol is required.
Actually I don't know what kind of dynamic loading does SDL deal with,
but anyway. You may want to make that change global, but only gcc's
preprocessor passes __ELF__, I think, so you can just add Linux or
something if you decide so.
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Thu, 10 May 2001 20:31:51 +0000 |
parents | 74212992fb08 |
children | 045f186426e1 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for SDL using the X11 video driver | |
3 | |
4 noinst_LTLIBRARIES = libvideo_x11.la | |
5 libvideo_x11_la_SOURCES = $(X11_SRCS) | |
6 | |
7 # The SDL X11 video driver sources | |
8 X11_SRCS = \ | |
9 SDL_x11dga.c \ | |
10 SDL_x11dga_c.h \ | |
11 SDL_x11events.c \ | |
12 SDL_x11events_c.h \ | |
13 SDL_x11gamma.c \ | |
14 SDL_x11gamma_c.h \ | |
15 SDL_x11gl.c \ | |
16 SDL_x11gl_c.h \ | |
17 SDL_x11image.c \ | |
18 SDL_x11image_c.h \ | |
19 SDL_x11modes.c \ | |
20 SDL_x11modes_c.h \ | |
21 SDL_x11mouse.c \ | |
22 SDL_x11mouse_c.h \ | |
23 SDL_x11video.c \ | |
24 SDL_x11video.h \ | |
25 SDL_x11wm.c \ | |
26 SDL_x11wm_c.h \ | |
27 SDL_x11yuv.c \ | |
28 SDL_x11yuv_c.h |