Commit 647545a5 by Siddhesh Poyarekar Committed by Jakub Jelinek

configure.ac: Disable libsanitizer if we're not building C++.

	* configure.ac: Disable libsanitizer if we're not building C++.
	* configure: Regenerate.

From-SVN: r193842
parent e2b5ad1e
2012-11-27 Siddhesh Poyarekar <siddhesh@redhat.com>
* configure.ac: Disable libsanitizer if we're not building C++.
* configure: Regenerate.
2012-11-15 Roland McGrath <roland@hack.frob.com> 2012-11-15 Roland McGrath <roland@hack.frob.com>
* MAINTAINERS (Write After Approval): Add myself. * MAINTAINERS (Write After Approval): Add myself.
......
...@@ -6437,11 +6437,11 @@ case ,${enable_languages},:${enable_objc_gc} in ...@@ -6437,11 +6437,11 @@ case ,${enable_languages},:${enable_objc_gc} in
;; ;;
esac esac
# Disable libitm if we're not building C++ # Disable libitm and libsanitizer if we're not building C++
case ,${enable_languages}, in case ,${enable_languages}, in
*,c++,*) ;; *,c++,*) ;;
*) *)
noconfigdirs="$noconfigdirs target-libitm" noconfigdirs="$noconfigdirs target-libitm target-libsanitizer"
;; ;;
esac esac
......
...@@ -2008,11 +2008,11 @@ case ,${enable_languages},:${enable_objc_gc} in ...@@ -2008,11 +2008,11 @@ case ,${enable_languages},:${enable_objc_gc} in
;; ;;
esac esac
# Disable libitm if we're not building C++ # Disable libitm and libsanitizer if we're not building C++
case ,${enable_languages}, in case ,${enable_languages}, in
*,c++,*) ;; *,c++,*) ;;
*) *)
noconfigdirs="$noconfigdirs target-libitm" noconfigdirs="$noconfigdirs target-libitm target-libsanitizer"
;; ;;
esac esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment