Mercurial > sdl-ios-xcode
annotate src/video/x11/Makefile.am @ 1018:012af0b7e8e6
Date: Fri, 24 Dec 2004 23:32:06 -0500
From: Mike Frysinger
Subject: [SDL] minor fix for gcc-2.x building
in src/video/directfb/SDL_DirectFB_video.c, some variables are not declared at
the beginning of scope ... newer gcc's will accept this, but gcc-2.x does not
find attached a simple patch by Matt Taylor to resolve this
http://bugs.gentoo.org/show_bug.cgi?id=75392
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 27 Dec 2004 20:03:53 +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 |