diff options
author | DJ Delorie <dj@redhat.com> | 2000-09-05 18:44:54 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2000-09-05 18:44:54 +0000 |
commit | 64e3a6598ac298032305189a470eb5c828633886 (patch) | |
tree | cd02d8b29abaff62d5e5d52b49c17a8d7c056aff /libiberty | |
parent | 71150974e8b0233964a0a12f71b5fe61c8b010b0 (diff) | |
download | gdb-64e3a6598ac298032305189a470eb5c828633886.zip gdb-64e3a6598ac298032305189a470eb5c828633886.tar.gz gdb-64e3a6598ac298032305189a470eb5c828633886.tar.bz2 |
* configure.in (Cygwin): special case cygwin only when we're
building cygwin, not when we're hosting cygwin.
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rwxr-xr-x | libiberty/configure | 13 | ||||
-rw-r--r-- | libiberty/configure.in | 13 |
3 files changed, 23 insertions, 8 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 61e68b7..99267f5 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +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-08-31 Hans-Peter Nilsson <hp@axis.com> * testsuite/demangle-expected: Add nine tests for diff --git a/libiberty/configure b/libiberty/configure index 1054b3b..d2c5d92 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -1774,10 +1774,15 @@ if test -z "${setobjs}"; then # provides from our shell variables, so that they appear to be # missing. - 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//'`" + # DJ - only if we're *building* cygwin, not just building *with* cygwin + + if test -n "${with_target_subdir}" + 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*) diff --git a/libiberty/configure.in b/libiberty/configure.in index 041a43d..adfbd5f 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -280,10 +280,15 @@ if test -z "${setobjs}"; then # provides from our shell variables, so that they appear to be # missing. - 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//'`" + # DJ - only if we're *building* cygwin, not just building *with* cygwin + + if test -n "${with_target_subdir}" + 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*) |