annotate autogen.sh @ 66:d112357a0ec1
Fix a bug with savegames introduced with changeset c7bcc0ec2267.
Warning: savegames created since c7bcc0ec2267 are probably corrupted,
you may have to start the game over.
If you chose not to do so, you should replace all occurrences of 'TextWindow' by 'TextImplWindow',
and 'Text Window' by 'TextImpl Window' in your save files.
author |
Thibaut Girka <thib@sitedethib.com> |
date |
Sat, 11 Dec 2010 18:36:20 +0100 |
parents |
2110e0cf64ac |
children |
c3d4f9ee2cf1 |
rev |
line source |
0
|
1 #!/bin/sh
|
22
|
2 autoheader && \
|
25
|
3 aclocal -I . && \
|
22
|
4 automake --add-missing && \
|
|
5 autoconf
|
|
6
|
0
|
7 # gcc 3.0.2 用の修正
|
|
8 # gtkmm の autoconf が変でエラーが出るので
|
|
9 # 強制的にエラーの元になる行を削除
|
|
10 #sed -e 's/^extern "C" void exit(int);//' -e "s/',//" configure > configure.new
|
|
11 #cp configure.new configure
|
|
12 #rm -f configure.new
|
|
13 ./configure $*
|