author | Ryan C. Gordon <icculus@icculus.org> |
Sun, 18 Sep 2005 21:44:42 +0000 | |
changeset 754 | e7cd7411eadf |
parent 630 | ffd26a27f74d |
permissions | -rwxr-xr-x |
213 | 1 |
#!/bin/sh |
2 |
||
3 |
set -e |
|
4 |
echo "Initial preparation...this can take awhile, so sit tight..." |
|
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
357
diff
changeset
|
5 |
rm -f Makefile.am |
357
9c0dd45cb7eb
Now copies the Makefile.am template instead of rename()ing it.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
6 |
perl -w -e 'use File::Copy; exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { copy("./Makefile.am.oldautomake", "./Makefile.am"); } else { copy("./Makefile.am.newautomake", "./Makefile.am"); }' |
213 | 7 |
aclocal |
630
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
8 |
|
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
9 |
# MacOS X renames GNU libtool to "glibtool", since they have something |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
10 |
# else called "libtool" already... |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
11 |
if [ -x /usr/bin/glibtoolize ]; then |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
12 |
glibtoolize --automake --copy --force |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
13 |
else |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
14 |
libtoolize --automake --copy --force |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
15 |
fi |
ffd26a27f74d
MacOS X build compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
625
diff
changeset
|
16 |
|
213 | 17 |
autoheader |
18 |
automake --foreign --add-missing --copy |
|
19 |
autoconf |
|
20 |
||
21 |
echo "You are now ready to run ./configure ..." |
|
22 |