Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.in11
2 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index da93bd2b8..03b39e0e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 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"
;;