From b31a8872e5f3fa6a187e20dc0bfa7900833fd7df Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 21 Mar 2006 09:24:10 +0000 Subject: [PATCH] Allow adding to the INCLUDE path Allow overriding the NASMFLAGS --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401570 --- configure.in | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/configure.in b/configure.in index adaa917df..8e499656b 100644 --- a/configure.in +++ b/configure.in @@ -50,13 +50,14 @@ else fi dnl Set up the compiler and linker flags -INCLUDE="-I$srcdir/include $INCLUDE" +SDL_INCLUDE="-I$srcdir/include $SDL_INCLUDE" if test x$srcdir != x.; then - INCLUDE="-Iinclude $INCLUDE" + SDL_INCLUDE="-Iinclude $SDL_INCLUDE" fi if test -d /usr/local/include; then - INCLUDE="$INCLUDE -I/usr/local/include" + SDL_INCLUDE="$SDL_INCLUDE -I/usr/local/include" fi +INCLUDE="$SDL_INCLUDE" case "$host" in *-*-cygwin*) # We build SDL on cygwin without the UNIX emulation layer @@ -589,17 +590,19 @@ AC_HELP_STRING([--enable-nasm], [use nasm assembly blitters on x86 [default=yes] if test x$NASM != x -a x$NASM != x'"$NASM"'; then AC_DEFINE(SDL_HERMES_BLITTERS) SOURCES="$SOURCES $srcdir/src/hermes/*.asm" - case $ARCH in - win32) - NASMFLAGS="-f win32" - ;; - openbsd) - NASMFLAGS="-f aoutb" - ;; - *) - NASMFLAGS="-f elf" - ;; - esac + if test x$NASMFLAGS = x; then + case $ARCH in + win32) + NASMFLAGS="-f win32" + ;; + openbsd) + NASMFLAGS="-f aoutb" + ;; + *) + NASMFLAGS="-f elf" + ;; + esac + fi AC_SUBST(NASM) AC_SUBST(NASMFLAGS) @@ -1892,7 +1895,6 @@ CheckUSBHID() fi } - dnl Check for clock_gettime() CheckClockGettime() {