diff options
author | Geoffrey Noer <noer@cygnus> | 1998-02-05 00:58:07 +0000 |
---|---|---|
committer | Geoffrey Noer <noer@cygnus> | 1998-02-05 00:58:07 +0000 |
commit | 53b0f196ac7ed30d86b391e6fa46265f0e2f4f5a (patch) | |
tree | dc07bfd5df09518122817e05a4560160b578a6cd | |
parent | 788e3f91ebc10573803f65f1011f2f22a73961c5 (diff) | |
download | gdb-53b0f196ac7ed30d86b391e6fa46265f0e2f4f5a.zip gdb-53b0f196ac7ed30d86b391e6fa46265f0e2f4f5a.tar.gz gdb-53b0f196ac7ed30d86b391e6fa46265f0e2f4f5a.tar.bz2 |
Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: add target-gperf to noconfigdirs for Cygwin32.
Fix typo in ming config comment.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com> + + * configure.in: add target-gperf to noconfigdirs for Cygwin32. + Fix typo in ming config comment. + Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com> * ltconfig, ltmain.sh: Update from libtool 1.0h. diff --git a/configure.in b/configure.in index 4a89ddd..14dd44f 100644 --- a/configure.in +++ b/configure.in @@ -604,7 +604,7 @@ case "${target}" in target_configdirs="$target_configdirs target-mingw" noconfigdirs="$noconfigdirs expect target-libgloss" - # Can't build gdb for cygwin32 if not native. + # Can't build gdb for mingw32 if not native. case "${host}" in i[3456]86-*-mingw32) ;; # keep gdb tcl tk expect etc. *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix db sn gnuserv" @@ -613,7 +613,7 @@ case "${target}" in ;; *-*-cygwin32) target_configdirs="$target_configdirs target-winsup" - noconfigdirs="$noconfigdirs target-libgloss" + noconfigdirs="$noconfigdirs target-gperf target-libgloss" # always build newlib. skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` |