Mercurial > sdl-ios-xcode
annotate src/video/x11/Makefile.am @ 1146:ab0154afe938
Date: Sat, 17 Sep 2005 13:38:49 +0200
From: Jon Daniel <forcemaster@gmx.net>
To: sdl@libsdl.org
Subject: [SDL] SDL_SemWaitTimeout patch for BeOS
The current SDL-1.2.9/src/thread/beos/SDL_syssem.c returns -1 if the
acquire_sem timeouts which according to the DocWiki is not correct.
I've added support for the B_TIMED_OUT and B_WOULD_BLOCK in the switch.
Jon Daniel
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Tue, 27 Sep 2005 11:27:38 +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 |