diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 13 insertions, 3 deletions
@@ -1,3 +1,13 @@ +Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Don't build libgui for a cygwin32 target when not on + a cygwin32 host. + +Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com) + + * configure (redirect): Set to null, so default behavior of + configure is now --verbose. + Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org> * ltmain.sh (mkdir): Check that the directory doesn't exist diff --git a/configure.in b/configure.in index 3629e59..93e52e7 100644 --- a/configure.in +++ b/configure.in @@ -611,7 +611,7 @@ case "${target}" in ;; esac ;; - *-*-cygwin32) + *-*-cygwin32*) target_configdirs="$target_configdirs target-winsup" noconfigdirs="$noconfigdirs target-gperf target-libgloss" # always build newlib. @@ -619,8 +619,8 @@ case "${target}" in # Can't build gdb for cygwin32 if not native. case "${host}" in - *-*-cygwin32) ;; # keep gdb tcl tk expect etc. - *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix db sn gnuserv" + *-*-cygwin32*) ;; # keep gdb tcl tk expect etc. + *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix libgui db sn gnuserv" # start-sanitize-ide noconfigdirs="$noconfigdirs libide vmake jstools" # end-sanitize-ide |