diff options
author | Steve Chamberlain <sac@cygnus> | 1995-10-19 23:14:56 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-10-19 23:14:56 +0000 |
commit | e1a1ddc65e6cbe93668ef64d5de2745613458786 (patch) | |
tree | 54f5ff2f8aa2165f1849e7d78b81581205cde3e1 /configure.in | |
parent | 5e8e7e66803d6610c671b41ef3cca78d84a3272f (diff) | |
download | gdb-e1a1ddc65e6cbe93668ef64d5de2745613458786.zip gdb-e1a1ddc65e6cbe93668ef64d5de2745613458786.tar.gz gdb-e1a1ddc65e6cbe93668ef64d5de2745613458786.tar.bz2 |
* configure.in (i[345]86-*-win32): Always build newlib.
Don't configure cvs, autoconf or texinfo.
(really this time)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/configure.in b/configure.in index 8881bc64..8e36e5a 100644 --- a/configure.in +++ b/configure.in @@ -326,14 +326,6 @@ case "${host}" in configdirs="$configdirs dosrel" ;; esac - -# Configure extra directories which are target specific - -case "${target}" in - i[345]86-*-win32*) - configdirs="$configdirs winsup newlib" ;; -esac - # Remove more programs from consideration, based on the host or # target this usually means that a port of the program doesn't # exist yet. @@ -404,12 +396,15 @@ case "${target}" in ;; i[345]86-*-win32) - noconfigdirs="$noconfigdirs tk" # Can't build gdb for win32 if not native. if [ x${is_cross_compiler} = xyes ]; then noconfigdirs="$noconfigdirs gdb" fi + # always build newlib. + skipdirs=`echo " ${skipdirs} " | sed -e 's/ newlib / /'` + # and winsup + configdirs="$configdirs winsup" ;; i[345]86-*-pe) noconfigdirs="$noconfigdirs libg++ libstdc++ libio librx" |