diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 9 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2002-04-09 Loren J. Rittle <ljrittle@acm.org> + + * configure.in: Add *-*-freebsd* configurations. + 2002-04-08 Tom Tromey <tromey@redhat.com> * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET. diff --git a/configure.in b/configure.in index 27a141b..abc2b47 100644 --- a/configure.in +++ b/configure.in @@ -617,6 +617,9 @@ case "${target}" in *-*-chorusos) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; + *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*) + noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" + ;; *-*-netbsd*) # Skip some stuff on all NetBSD configurations. skipdirs="$skipdirs target-newlib target-libiberty target-libgloss" @@ -653,6 +656,9 @@ case "${target}" in # linux has rx in libc skipdirs="$skipdirs target-librx" ;; + alpha*-*-freebsd*) + noconfigdirs="$noconfigdirs target-newlib target-libgloss" + ;; alpha*-*-*) # newlib is not 64 bit ready noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" @@ -797,6 +803,9 @@ case "${target}" in target_configdirs="${target_configdirs} target-libstub target-cygmon" fi ;; + i[34567]86-*-freebsd*) + noconfigdirs="$noconfigdirs target-newlib target-libgloss" + ;; *-*-linux*) noconfigdirs="$noconfigdirs target-newlib target-libgloss" # linux has rx in libc |