diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-01-27 02:14:43 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@wasabisystems.com> | 2002-01-27 02:14:43 +0000 |
commit | 0dbef4a1922a552f5670930e67013b3056813091 (patch) | |
tree | 0e843a3f4b890b6a245c11fa7160bcd210f58b77 | |
parent | ab5d17797232a3d1750450d4d55a8a15f73c053c (diff) | |
download | newlib-0dbef4a1922a552f5670930e67013b3056813091.zip newlib-0dbef4a1922a552f5670930e67013b3056813091.tar.gz newlib-0dbef4a1922a552f5670930e67013b3056813091.tar.bz2 |
* configure.in (*-*-netbsd*): New. Skip target-newlib,
target-libiberty, and target-libgloss. Skip Java-related
libraries if not supported for NetBSD on target CPU.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 11 |
2 files changed, 17 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2002-01-26 Jason Thorpe <thorpej@wasabisystems.com> + + * configure.in (*-*-netbsd*): New. Skip target-newlib, + target-libiberty, and target-libgloss. Skip Java-related + libraries if not supported for NetBSD on target CPU. + 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com> * configure.in: Import StrongARM and XScale target_configdirs from diff --git a/configure.in b/configure.in index 75bf463..a9219bb 100644 --- a/configure.in +++ b/configure.in @@ -601,6 +601,17 @@ no) esac case "${target}" in + *-*-netbsd*) + # Skip some stuff on all NetBSD configurations. + skipdirs="$skipdirs target-newlib target-libiberty target-libgloss" + + # Skip some stuff that's unsupported on some NetBSD configurations. + case "${target}" in + *) + noconfigdirs="$noconfigdirs ${libgcj}" + ;; + esac + ;; *-*-netware) noconfigdirs="$noconfigdirs ${libstdcxx_version} target-newlib target-libiberty target-libgloss target-libffi" ;; |