summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-05-12 13:32:23 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-05-12 13:33:03 +0200
commit180b1e1e18d6cc2b2ab35979ea53982ee0b58396 (patch)
treed0f8a4f1d8bdc9022bd2a0275128621c53ebdaa8 /configure.ac
parentd29cdd990d44c5b11bf949397fd30154a1f61475 (diff)
configure.ac: check for newly needed mdds header
Change-Id: Id7dcf5b6c2946b2445dfd4eacf5b78f84607491a
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index aa65cda5df18..8ba6974e4e76 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8092,6 +8092,8 @@ if test "$with_system_mdds" = "yes"; then
[AC_MSG_ERROR(mdds/multi_type_vector.hpp not found. Install mdds >= 0.8.0)], [])
AC_CHECK_TYPE(mdds::multi_type_vector<int>::iterator, [],
[AC_MSG_ERROR(mdds/multi_type_matrix.hpp does not define multi_type_vector::iterator. Install mdds >= 0.8.0)], [#include <mdds/multi_type_vector.hpp>])
+ AC_CHECK_HEADER(mdds/multi_type_vector_custom_func1.hpp, [],
+ [AC_MSG_ERROR(mdds/multi_type_vector_custom_func1.hpp not found. Install mdds >= 0.8.0)], [])
CPPFLAGS="$save_CPPFLAGS"
AC_LANG_POP([C++])
else