diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-01-27 02:14:43 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-01-27 02:14:43 +0000 |
commit | e82380ccbbc6fba0c3b800b82cafb481baa73280 (patch) | |
tree | 68d249309281b6ccbcf168e2865f9e0095ac3a6e | |
parent | af2dc4b8c3a43822688538db80eb0c3fb182ec2a (diff) | |
download | gdb-e82380ccbbc6fba0c3b800b82cafb481baa73280.zip gdb-e82380ccbbc6fba0c3b800b82cafb481baa73280.tar.gz gdb-e82380ccbbc6fba0c3b800b82cafb481baa73280.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" ;; |