Clean up configure/build-process.
- assume C++ standard-conforming environment - add a user-option for gnuplot-support - separate gnuplot-code into declaration and implementation, so we can define at EO-build-time whether to use it or not. Adopt code and Makefiles to above changes. Some minor fixes.
This commit is contained in:
parent
6485482f39
commit
47af7cfe5a
22 changed files with 603 additions and 537 deletions
|
|
@ -1,7 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
DIE=0
|
||||
|
||||
PROG=eo
|
||||
|
||||
(autoconf --version) < /dev/null > /dev/null 2>&1 ||
|
||||
|
|
@ -11,13 +10,6 @@ PROG=eo
|
|||
DIE=1
|
||||
}
|
||||
|
||||
#(libtool --version) < /dev/null > /dev/null 2>&1 ||
|
||||
#{
|
||||
# echo
|
||||
# echo "You must have libtool installed to compile $PROG."
|
||||
# DIE=1
|
||||
#}
|
||||
|
||||
(automake --version) < /dev/null > /dev/null 2>&1 ||
|
||||
{
|
||||
echo
|
||||
|
|
@ -37,7 +29,7 @@ automake -a -c
|
|||
autoconf
|
||||
|
||||
# we want doc to be recompiled - and it keeps saying it's up to date!!!
|
||||
touch doc/eo.cfg
|
||||
# touch doc/eo.cfg
|
||||
|
||||
echo
|
||||
echo "Now run 'configure' and 'make' to build $PROG."
|
||||
|
|
|
|||
Reference in a new issue