annotate autogen.sh @ 270:37fa1484f71b
From: "Mattias Engdeg�rd" <f91-men@nada.kth.se>
To: slouken@devolution.com
Subject: Re: [SDL] Question about SDL_FillRect()
I benchmarked with and without clipping UpdateRects and was unable to find
any difference on my moderately slow machine. Anyway, I haven't added
clipping in this patch, but fixed a couple of bugs and generally cleaned
up some of the X11 image code. Most importantly, UpdateRects now checks
for both zero height and width. Also, I eliminated the entire code to
byteswap X11 images since X11 can do that automatically if you ask it
nicely :-)
author |
Sam Lantinga <slouken@libsdl.org> |
date |
Fri, 18 Jan 2002 22:02:03 +0000 |
parents |
74212992fb08 |
children |
cdf0cf26347b |
rev |
line source |
0
|
1 #!/bin/sh
|
|
2 #
|
|
3 echo "Generating build information using aclocal, automake and autoconf"
|
|
4 echo "This may take a while ..."
|
|
5
|
|
6 # Touch the timestamps on all the files since CVS messes them up
|
|
7 directory=`dirname $0`
|
|
8 touch $directory/configure.in
|
|
9
|
|
10 # Regenerate configuration files
|
|
11 aclocal
|
|
12 automake --foreign --include-deps
|
|
13 autoconf
|
|
14 (cd test; aclocal; automake --foreign --include-deps; autoconf)
|
|
15
|
|
16 # Run configure for this platform
|
|
17 #./configure $*
|
|
18 echo "Now you are ready to run ./configure"
|