updates
This commit is contained in:
parent
7db38bc9cd
commit
de69e235f4
3 changed files with 13 additions and 6 deletions
|
|
@ -33,7 +33,7 @@ set aclocalinclude="$ACLOCAL_FLAGS"
|
|||
aclocal $aclocalinclude
|
||||
unset $aclocalinclude
|
||||
autoheader
|
||||
automake --add --copy
|
||||
automake -a -c
|
||||
autoconf
|
||||
|
||||
# we want doc to be recompiled - and it keeps saying it's up to date!!!
|
||||
|
|
|
|||
|
|
@ -42,3 +42,5 @@ pkginclude_HEADERS = eoEsChromInit.h \
|
|||
make_op_real.h \
|
||||
make_real.h
|
||||
|
||||
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
#include <stdexcept> // runtime_error
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// FirstBitGA.cpp
|
||||
|
|
@ -8,12 +10,15 @@
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
// standard includes
|
||||
|
||||
#include <iostream> // cout
|
||||
#include <strstream> // ostrstream, istrstream
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#ifdef HAVE_SSTREAM
|
||||
#include <sstream>
|
||||
#else
|
||||
#include <strstream>
|
||||
#endif
|
||||
|
||||
// the general include for eo
|
||||
|
||||
#include <eo>
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
|||
Reference in a new issue