Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
19 lines (17 loc) · 497 Bytes

autogen.sh

File metadata and controls

executable file
·
19 lines (17 loc) · 497 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
#!/bin/sh
#
Feb 19, 2006
Feb 19, 2006
3
echo "Generating build information using autoconf"
Apr 26, 2001
Apr 26, 2001
4
5
6
echo "This may take a while ..."
# Regenerate configuration files
Feb 19, 2006
Feb 19, 2006
7
cp acinclude.m4 aclocal.m4
Mar 21, 2006
Mar 21, 2006
8
found=false
May 15, 2006
May 15, 2006
9
for autoconf in autoconf autoconf259 autoconf-2.59
Mar 21, 2006
Mar 21, 2006
10
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
Mar 21, 2006
Mar 21, 2006
11
done
Mar 21, 2006
Mar 21, 2006
12
13
14
15
if test x$found = xfalse; then
echo "Couldn't find autoconf, aborting"
exit 1
fi
Feb 20, 2006
Feb 20, 2006
16
(cd test; sh autogen.sh)
Apr 26, 2001
Apr 26, 2001
17
18
19
# Run configure for this platform
echo "Now you are ready to run ./configure"