mirror of https://github.com/BOINC/boinc.git
25 lines
750 B
Bash
Executable File
25 lines
750 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## $Id$
|
|
|
|
# for solaris machines that don't have autoconf 2.57 or automake 1.7 installed:
|
|
|
|
# this file is only for bootstrapping the "Makefile.in" files and "Makefile"
|
|
# files; you probably don't need to run this if the Makefile.in files were
|
|
# correctly checked into the repository.
|
|
|
|
## need autoconf, automake, m4, ... from quarl's bin directory:
|
|
if [ `uname` = SunOS ]; then
|
|
PATH=/disks/philmor/a/users/quarl/local/Node-SOLARIS/bin:$PATH
|
|
export PATH
|
|
fi
|
|
|
|
echo "Bootstrapping configure script and makefiles:"
|
|
|
|
aclocal && automake --foreign && autoconf && autoheader
|
|
|
|
## We don't just run ./configure ourselves here, because the user may not want
|
|
## to run it, or may want to run with custom parameters.
|
|
|
|
echo "Done, now run ./configure"
|