annotate autogen.sh @ 1208:d90b362628ea

From: "alan buckley" <alan_baa@hotmail.com> Subject: Patch for RISC OS cursor palette handling in SDL Date: Mon, 07 Nov 2005 09:14:15 -0800 The mouse cursor palette was not correctly restored on RISC OS if the system was using anything but the default mouse colours. Additionally I've modifed the order the wait for vsync is called as it should be after the screen bank switching.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 23 Dec 2005 09:40:15 +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"