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 | 06ca55e7b946b0e9915a843c3d9e825ba4c5e752 (patch) | |
tree | ea42ecd4087c5ee3f59055c48d573928a1e07a2b /configure.in | |
parent | 11ee16983bfd2b228bfcb79d6b567c35d15827d1 (diff) | |
download | gdb-06ca55e7b946b0e9915a843c3d9e825ba4c5e752.tar.gz |
* configure.in (*-*-netbsd*): New. Skip target-newlib,
target-libiberty, and target-libgloss. Skip Java-related
libraries if not supported for NetBSD on target CPU.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 75bf46382be..a9219bb0b82 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" ;; |