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. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40721
This commit is contained in:
parent
addc0b023e
commit
2aa25e175e
3 changed files with 23 additions and 16 deletions
|
@ -415,7 +415,7 @@ CheckNAS()
|
|||
have_nas=no
|
||||
if test -r /usr/X11R6/include/audio/audiolib.h; then
|
||||
have_nas=yes
|
||||
CFLAGS="$CFLAGS -DNAS_SUPPORT"
|
||||
CFLAGS="$CFLAGS -DNAS_SUPPORT -I/usr/X11R6/include/"
|
||||
SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt"
|
||||
AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas"
|
||||
AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue