Skip to content

Latest commit

 

History

History
executable file
·
20 lines (15 loc) · 436 Bytes

bootstrap

File metadata and controls

executable file
·
20 lines (15 loc) · 436 Bytes
 
Jan 19, 2002
Jan 19, 2002
1
#!/bin/sh
Sep 25, 2001
Sep 25, 2001
2
Jan 4, 2002
Jan 4, 2002
3
4
set -e
echo "Initial preparation...this can take awhile, so sit tight..."
Sep 25, 2001
Sep 25, 2001
5
aclocal
May 8, 2004
May 8, 2004
6
7
8
9
10
11
12
13
14
# MacOS X renames GNU libtool to "glibtool", since they have something
# else called "libtool" already...
if [ -x /usr/bin/glibtoolize ]; then
glibtoolize --automake --copy --force
else
libtoolize --automake --copy --force
fi
Oct 3, 2001
Oct 3, 2001
15
autoheader
Sep 25, 2001
Sep 25, 2001
16
automake --foreign --add-missing --copy
Sep 25, 2001
Sep 25, 2001
17
autoconf
Sep 25, 2001
Sep 25, 2001
18
19
echo "You are now ready to run ./configure ..."