From 5c7c38c0257a65be88c9c3545f711d4ec90aee9c Mon Sep 17 00:00:00 2001 From: Cedric Bail Date: Sun, 4 May 2014 13:11:11 +0200 Subject: [PATCH] eolian_cxx: oops, forgot to disable build of Eolian_Cxx if C++11 is not available. --- src/Makefile_Eolian_Cxx.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am index 47578a3c55..165b836fd6 100644 --- a/src/Makefile_Eolian_Cxx.am +++ b/src/Makefile_Eolian_Cxx.am @@ -22,6 +22,8 @@ lib/eolian_cxx/grammar/tab.hh ### Binary +if HAVE_CXX11 + bin_PROGRAMS += bin/eolian_cxx/eolian_cxx bin_eolian_cxx_eolian_cxx_SOURCES = \ @@ -43,3 +45,5 @@ bin_eolian_cxx_eolian_cxx_DEPENDENCIES = @USE_EOLIAN_INTERNAL_LIBS@ include Makefile_Eolian_Cxx_Helper.am +endif +