# HG changeset patch # User Patrice Mandin # Date 1140468832 0 # Node ID 428c8690cf73c58180a00fc8ed99a87f5c43b039 # Parent 4eb8c66ce282062424cf5bafd39224e19e3cdac7 Add missing include directories diff -r 4eb8c66ce282 -r 428c8690cf73 configure.in --- 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 diff -r 4eb8c66ce282 -r 428c8690cf73 src/timer/mint/SDL_systimer.c --- 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;