Commit dfcada9a by Mark Mitchell Committed by Mark Mitchell

configure.in: Do not build libmudflap by default on non-GNU/Linux systems.

	* configure.in: Do not build libmudflap by default on non-GNU/Linux
	systems.
	* configure: Regenerated.

From-SVN: r84406
parent 1bf4ab23
2004-07-09 Mark Mitchell <mark@codesourcery.com>
* configure.in: Do not build libmudflap by default on non-GNU/Linux
systems.
* configure: Regenerated.
2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/16344
......
......@@ -351,12 +351,21 @@ esac
# Allow --disable-libmudflap to exclude target-libmudflap
case $enable_libmudflap in
yes | "")
# By default it's enabled
yes)
;;
no)
noconfigdirs="$noconfigdirs target-libmudflap"
;;
"")
case "${target}" in
*-*-linux*)
# Enable libmudflap by default in GNU/Linux.
;;
*)
# Disable it by default everywhere else.
noconfigdirs="$noconfigdirs target-libmudflap"
;;
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