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 aclocal $aclocalinclude
unset $aclocalinclude unset $aclocalinclude
autoheader autoheader
automake --add --copy automake -a -c
autoconf autoconf
# we want doc to be recompiled - and it keeps saying it's up to date!!! # 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_op_real.h \
make_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 // FirstBitGA.cpp
@ -8,12 +10,15 @@
// //
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// standard includes // standard includes
#include <iostream>
#include <iostream> // cout #include <stdexcept>
#include <strstream> // ostrstream, istrstream #ifdef HAVE_SSTREAM
#include <sstream>
#else
#include <strstream>
#endif
// the general include for eo // the general include for eo
#include <eo> #include <eo>
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------