From 22ebb7e8f599cda79434c8a110a976a43fc8faf5 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sat, 15 Jan 2005 21:09:51 +0000 Subject: [PATCH] Fixed missing 'vmime/config.hpp' include. --- ChangeLog | 5 +++++ SConstruct | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index ecf8db87..c29d2bee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,11 @@ VERSION 0.6.3cvs ================ +2005-01-15 Vincent Richard + + * Fixed missing 'vmime/config.hpp' include when installing VMime + using 'make install'. + 2005-01-13 Vincent Richard * messaging/events.*: prefixed function names with 'get' + written diff --git a/SConstruct b/SConstruct index 818a3057..a1b7ee0a 100644 --- a/SConstruct +++ b/SConstruct @@ -955,6 +955,8 @@ docdir = $(datadir)/doc/$(GENERIC_LIBRARY_NAME) if file[-4:] == '.hpp': x.append(file[len("vmime/"):]) # remove 'vmime/' prefix + x.append("config.hpp") + Makefile_am.write(buildMakefileFileList(x, 0)) Makefile_am.close()