Mercurial > sdl-ios-xcode
changeset 490:7e53d17ec798
The portable way of including SDL is #include "SDL.h"
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 09 Sep 2002 05:28:06 +0000 |
parents | d90349051cab |
children | da6a7e859616 |
files | sdl-config.in |
diffstat | 1 files changed, 9 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/sdl-config.in Mon Sep 09 05:12:32 2002 +0000 +++ b/sdl-config.in Mon Sep 09 05:28:06 2002 +0000 @@ -39,13 +39,16 @@ echo @SDL_VERSION@ ;; --cflags) - if test @includedir@ != /usr/include ; then - # Handle oddities in Win32 path handling (assumes prefix) - prefix=`echo ${prefix} | sed 's,^//\([A-Z]\),\1:,'` + echo -I@includedir@/SDL @SDL_CFLAGS@ - includes=-I@includedir@ - fi - echo $includes -I@includedir@/SDL @SDL_CFLAGS@ + # The portable way of including SDL is #include "SDL.h" + #if test @includedir@ != /usr/include ; then + # # Handle oddities in Win32 path handling (assumes prefix) + # prefix=`echo ${prefix} | sed 's,^//\([A-Z]\),\1:,'` + # + # includes=-I@includedir@ + #fi + #echo $includes -I@includedir@/SDL @SDL_CFLAGS@ ;; @ENABLE_SHARED_TRUE@ --libs) @ENABLE_SHARED_TRUE@ libdirs="-L@libdir@ @SDL_RLD_FLAGS@"