Commit 2f31ed7e by DJ Delorie Committed by DJ Delorie

configure.in (Cygwin): special case cygwin only when we're building cygwin, not…

configure.in (Cygwin): special case cygwin only when we're building cygwin, not when we're hosting cygwin.

* configure.in (Cygwin): special case cygwin only when we're
building cygwin, not when we're hosting cygwin.

From-SVN: r36164
parent a6efbece
2000-08-31 DJ Delorie <dj@redhat.com>
* configure.in (Cygwin): special case cygwin only when we're
building cygwin, not when we're hosting cygwin.
2000-09-04 Alex Samuel <samuel@codesourcery.com> 2000-09-04 Alex Samuel <samuel@codesourcery.com>
* cp-demangle.c (demangle_template_arg): Eat an `E' after an * cp-demangle.c (demangle_template_arg): Eat an `E' after an
......
...@@ -1774,10 +1774,15 @@ if test -z "${setobjs}"; then ...@@ -1774,10 +1774,15 @@ if test -z "${setobjs}"; then
# provides from our shell variables, so that they appear to be # provides from our shell variables, so that they appear to be
# missing. # missing.
funcs="`echo $funcs | sed -e 's/random//'`" # DJ - only if we're *building* cygwin, not just building *with* cygwin
LIBOBJS="$LIBOBJS random.o"
vars="`echo $vars | sed -e 's/sys_siglist//'`" if test -n "${with_target_subdir}"
checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`" then
funcs="`echo $funcs | sed -e 's/random//'`"
LIBOBJS="$LIBOBJS random.o"
vars="`echo $vars | sed -e 's/sys_siglist//'`"
checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
fi
;; ;;
*-*-mingw32*) *-*-mingw32*)
......
...@@ -280,10 +280,15 @@ if test -z "${setobjs}"; then ...@@ -280,10 +280,15 @@ if test -z "${setobjs}"; then
# provides from our shell variables, so that they appear to be # provides from our shell variables, so that they appear to be
# missing. # missing.
funcs="`echo $funcs | sed -e 's/random//'`" # DJ - only if we're *building* cygwin, not just building *with* cygwin
LIBOBJS="$LIBOBJS random.o"
vars="`echo $vars | sed -e 's/sys_siglist//'`" if test -n "${with_target_subdir}"
checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`" then
funcs="`echo $funcs | sed -e 's/random//'`"
LIBOBJS="$LIBOBJS random.o"
vars="`echo $vars | sed -e 's/sys_siglist//'`"
checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
fi
;; ;;
*-*-mingw32*) *-*-mingw32*)
......
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