fix 'make dist', works now (besides ParadisEO).
This commit is contained in:
parent
de69e235f4
commit
5150bd4888
12 changed files with 79 additions and 85 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@
|
|||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SSTREAM
|
||||
#include <sstream>
|
||||
#else
|
||||
|
|
|
|||
Reference in a new issue