fix 'make dist', works now (besides ParadisEO).

This commit is contained in:
kuepper 2004-09-21 10:23:33 +00:00
commit 5150bd4888
12 changed files with 79 additions and 85 deletions

View file

@ -6,10 +6,6 @@
lib_LIBRARIES = libeoutils.a
AM_CXXFLAGS = -I$(top_srcdir)/src
libeoutils_a_SOURCES = eoParser.cpp \
eoRNG.cpp \
eoState.cpp \
@ -19,6 +15,8 @@ libeoutils_a_SOURCES = eoParser.cpp \
eoRealBounds.cpp \
make_help.cpp
libeoincdir = $(includedir)/eo/utils
pkginclude_HEADERS = checkpointing $(srcdir)/*.h
libeoinc_HEADERS = checkpointing $(srcdir)/*.h
AM_CXXFLAGS = -I$(top_srcdir)/src
EXTRA_DIST = *.h

View file

@ -3,8 +3,11 @@
#pragma warning(disable:4786)
#endif
#include <ctime>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <ctime>
#ifdef HAVE_SSTREAM
#include <sstream>
#else

View file

@ -1,11 +1,13 @@
#ifdef _MSC_VER
#pragma warning(disable:4786)
#endif
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <algorithm>
#include <fstream>
#ifdef HAVE_SSTREAM
#include <sstream>
#else

View file

@ -2,6 +2,10 @@
#pragma warning(disable:4786)
#endif
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_SSTREAM
#include <sstream>
#else