This commit is contained in:
kuepper 2004-09-20 21:47:15 +00:00
commit de69e235f4
3 changed files with 13 additions and 6 deletions

View file

@ -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!!!

View file

@ -42,3 +42,5 @@ pkginclude_HEADERS = eoEsChromInit.h \
make_op_real.h \
make_real.h
AM_CXXFLAGS = -I$(top_srcdir)/src

View file

@ -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>
//-----------------------------------------------------------------------------