diff --git a/ChangeLog b/ChangeLog index a8019b354ce..93f24468069 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ * configure.ac: Disable libitm if c++ is not enabled. * configure: Rebuild. + * configure.ac: Fix regexp for same. + * configure: Rebuild. + 2012-01-02 Balaji V. Iyer * MAINTAINERS (Write After Approval): Add myself. diff --git a/configure b/configure index d970c1dc526..4d09cbeb7bd 100755 --- a/configure +++ b/configure @@ -6475,7 +6475,7 @@ esac # Disable libitm if we're not building C++ case ,${enable_languages}, in - *,c++) ;; + *,c++,*) ;; *) noconfigdirs="$noconfigdirs target-libitm" ;; diff --git a/configure.ac b/configure.ac index b97c5051044..57d5382a4c7 100644 --- a/configure.ac +++ b/configure.ac @@ -1984,7 +1984,7 @@ esac # Disable libitm if we're not building C++ case ,${enable_languages}, in - *,c++) ;; + *,c++,*) ;; *) noconfigdirs="$noconfigdirs target-libitm" ;;