annotate autogen.sh @ 1164:10b3fb28c86b

Date: Mon, 31 Oct 2005 14:23:34 +0100 From: Thomas Omilian <paccy@arcor.de> To: sdl@libsdl.org Subject: [SDL] SDL_SoftStretch() fixed! Ok, after debugging the night I found the error: in video/SDL_stretch.c in Line 81 /* See if we need to regenerate the copy buffer */ if ( (src_w == last.src_w) && (dst_w == last.src_w) && (bpp == last.bpp) ) { return(0); } the second comparison should be (dst_w == last dst_w). Perhaps someone could apply it to the source... Regards, Thomas Omilian
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 01 Nov 2005 04:14:24 +0000
parents c7376efecdb5
children d02b552e5304
rev   line source
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
1 #!/bin/sh
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
2 #
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
3 echo "Generating build information using aclocal, automake and autoconf"
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
4 echo "This may take a while ..."
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
5
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
6 # Touch the timestamps on all the files since CVS messes them up
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
7 directory=`dirname $0`
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
8 touch $directory/configure.in
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
9
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
10 # Regenerate configuration files
1142
c7376efecdb5 Date: Fri, 2 Sep 2005 21:56:50 -0400
Sam Lantinga <slouken@libsdl.org>
parents: 343
diff changeset
11 aclocal || exit 1
c7376efecdb5 Date: Fri, 2 Sep 2005 21:56:50 -0400
Sam Lantinga <slouken@libsdl.org>
parents: 343
diff changeset
12 automake --foreign --include-deps --add-missing --copy || exit 1
c7376efecdb5 Date: Fri, 2 Sep 2005 21:56:50 -0400
Sam Lantinga <slouken@libsdl.org>
parents: 343
diff changeset
13 autoconf || exit 1
343
9430ba1a19f3 *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 342
diff changeset
14 (cd test; aclocal; automake --foreign --include-deps --add-missing --copy; autoconf)
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
15
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
16 # Run configure for this platform
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
17 #./configure $*
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
18 echo "Now you are ready to run ./configure"