Commit 801e2270 by Corinna Vinschen Committed by DJ Delorie

configure.in: Don't build Cygwin native newlib if winsup directory is missing.

2004-06-17  Corinna Vinschen  <vinschen@redhat.com>

	* configure.in: Don't build Cygwin native newlib if winsup
	directory is missing.  Emit warning instead.
	* configure: Regenerate.

From-SVN: r83306
parent 0620be18
2004-06-17 Corinna Vinschen <vinschen@redhat.com>
* configure.in: Don't build Cygwin native newlib if winsup
directory is missing. Emit warning instead.
* configure: Regenerate.
2004-06-09 Paolo Bonzini <bonzini@gnu.org>
* Makefile.tpl (touch-stage[+id+]): New.
......
......@@ -585,8 +585,13 @@ case "${target}" in
*-*-cygwin*)
target_configdirs="$target_configdirs target-libtermcap target-winsup"
noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}"
# always build newlib.
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
# always build newlib if winsup directory is present.
if test -d winsup
then
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
else
echo "Warning: winsup is missing so newlib can't be built."
fi
# Can't build gdb for Cygwin if not native.
case "${host}" in
......
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