Mercurial > sdl-ios-xcode
changeset 1396:428c8690cf73
Add missing include directories
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Mon, 20 Feb 2006 20:53:52 +0000 |
parents | 4eb8c66ce282 |
children | b189a73aa335 |
files | configure.in src/timer/mint/SDL_systimer.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in Mon Feb 20 20:53:01 2006 +0000 +++ b/configure.in Mon Feb 20 20:53:52 2006 +0000 @@ -2274,11 +2274,13 @@ else AC_DEFINE(SDL_TIMER_MINT) SOURCES="$SOURCES $srcdir/src/timer/mint/*.c" + BUILD_CFLAGS="$BUILD_CFLAGS -I$srcdir/src/timer/mint" fi have_timers=yes fi # MiNT does not define "unix" BUILD_CFLAGS="$BUILD_CFLAGS -Dunix" + BUILD_CFLAGS="$BUILD_CFLAGS -I$srcdir/src/video/ataricommon" ;; *-riscos) ARCH=riscos
--- a/src/timer/mint/SDL_systimer.c Mon Feb 20 20:53:01 2006 +0000 +++ b/src/timer/mint/SDL_systimer.c Mon Feb 20 20:53:52 2006 +0000 @@ -43,7 +43,7 @@ #include "../SDL_timer_c.h" #include "SDL_thread.h" -#include "mint/SDL_vbltimer_s.h" +#include "SDL_vbltimer_s.h" /* The first ticks value of the application */ static Uint32 start;