Mercurial > sdl-ios-xcode
comparison configure.in @ 720:f90d80d68071
N Sep 17 8791 Sam Lantinga Re: tks source released
Date: Sun, 07 Sep 2003 02:51:58 +0200
From: Stephane Marchesin
Subject: [SDL] Two little patches
Compiling SDL with a recent gcc (gcc 3.3.1, 3.3 doesn't have this
behaviour) gives some nasty warnings :
SDL_blit_A.c: In function `BlitRGBtoRGBSurfaceAlpha128MMX':
SDL_blit_A.c:223: warning: integer constant is too large for "long" type
SDL_blit_A.c:225: warning: integer constant is too large for "long" type
SDL_blit_A.c:227: warning: integer constant is too large for "long" type
[...]
The first attached patch (longlongfix.patch) tells gcc to really treat
those constants as unsigned long long and not long.
The second patch (nasinclude.patch) fixes an include problem I had while
compiling nas audio : when the <audio/audiolib.h> file lies in
/usr/X11R6/include, a -I/usr/X11R6/include option is needed or the file
isn't found.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 21 Sep 2003 18:32:04 +0000 |
parents | 269c97e24da6 |
children | 1e8865a3e127 |
comparison
equal
deleted
inserted
replaced
719:269c97e24da6 | 720:f90d80d68071 |
---|---|
413 if test x$enable_audio = xyes -a x$enable_nas = xyes; then | 413 if test x$enable_audio = xyes -a x$enable_nas = xyes; then |
414 AC_MSG_CHECKING(for NAS audio support) | 414 AC_MSG_CHECKING(for NAS audio support) |
415 have_nas=no | 415 have_nas=no |
416 if test -r /usr/X11R6/include/audio/audiolib.h; then | 416 if test -r /usr/X11R6/include/audio/audiolib.h; then |
417 have_nas=yes | 417 have_nas=yes |
418 CFLAGS="$CFLAGS -DNAS_SUPPORT" | 418 CFLAGS="$CFLAGS -DNAS_SUPPORT -I/usr/X11R6/include/" |
419 SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt" | 419 SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt" |
420 AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas" | 420 AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas" |
421 AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la" | 421 AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la" |
422 | 422 |
423 dnl On IRIX, the NAS includes are in a different directory, | 423 dnl On IRIX, the NAS includes are in a different directory, |