parent
baa662bbea
commit
b0db0fc2c5
8 changed files with 60 additions and 38075 deletions
@ -0,0 +1,17 @@ |
||||
The CVS archive doesn't contain pre-built configuration scripts for |
||||
UNIXish platforms. To generate them call `autogen.sh', which in turn |
||||
depends on the following packages: |
||||
|
||||
automake (1.9.4) |
||||
libtool (1.5.14) |
||||
autoconf (2.59b) |
||||
|
||||
The versions given in parentheses are known to work. |
||||
|
||||
For static builds which don't use platform specific optimizations no |
||||
configure script is necessary at all; saying |
||||
|
||||
make setup ansi |
||||
make |
||||
|
||||
should work on all platforms which have GNU make (or makepp). |
@ -0,0 +1,33 @@ |
||||
#!/bin/sh |
||||
|
||||
run () |
||||
{ |
||||
echo "running \`$*'" |
||||
eval $* |
||||
|
||||
if test $? != 0 ; then |
||||
echo "error while running \`$*'" |
||||
exit 1 |
||||
fi |
||||
} |
||||
|
||||
if test ! -f ./builds/unix/configure.ac; then |
||||
echo "You must be in the same directory as \`autogen.sh'." |
||||
echo "Bootstrapping doesn't work if srcdir != builddir." |
||||
exit 1 |
||||
fi |
||||
|
||||
cd builds/unix |
||||
|
||||
run aclocal -I . |
||||
run libtoolize --force --copy |
||||
run autoconf |
||||
|
||||
chmod +x mkinstalldirs |
||||
chmod +x install-sh |
||||
|
||||
cd ../.. |
||||
|
||||
chmod +x ./configure |
||||
|
||||
# EOF |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue