From 0dbef4a1922a552f5670930e67013b3056813091 Mon Sep 17 00:00:00 2001 From: Jason Thorpe Date: Sun, 27 Jan 2002 02:14:43 +0000 Subject: [PATCH] * configure.in (*-*-netbsd*): New. Skip target-newlib, target-libiberty, and target-libgloss. Skip Java-related libraries if not supported for NetBSD on target CPU. --- ChangeLog | 6 ++++++ configure.in | 11 +++++++++++ 2 files changed, 17 insertions(+) diff --git a/ChangeLog b/ChangeLog index da93bd2b8..03b39e0e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-01-26 Jason Thorpe + + * 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 * configure.in: Import StrongARM and XScale target_configdirs from diff --git a/configure.in b/configure.in index 75bf46382..a9219bb0b 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" ;;