diff options
Diffstat (limited to 'libgo/configure')
-rwxr-xr-x | libgo/configure | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/libgo/configure b/libgo/configure index e024b2f..5d7b46b 100755 --- a/libgo/configure +++ b/libgo/configure @@ -646,6 +646,8 @@ LIBGO_IS_PPC64_FALSE LIBGO_IS_PPC64_TRUE LIBGO_IS_PPC_FALSE LIBGO_IS_PPC_TRUE +LIBGO_IS_MIPS64_FALSE +LIBGO_IS_MIPS64_TRUE LIBGO_IS_MIPSO64_FALSE LIBGO_IS_MIPSO64_TRUE LIBGO_IS_MIPSN64_FALSE @@ -11124,7 +11126,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11127 "configure" +#line 11129 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11230,7 +11232,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11233 "configure" +#line 11235 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -13884,6 +13886,14 @@ else LIBGO_IS_MIPSO64_FALSE= fi + if test $mips_abi = n64 -o $mips_abi = o64; then + LIBGO_IS_MIPS64_TRUE= + LIBGO_IS_MIPS64_FALSE='#' +else + LIBGO_IS_MIPS64_TRUE='#' + LIBGO_IS_MIPS64_FALSE= +fi + if test $is_ppc = yes; then LIBGO_IS_PPC_TRUE= LIBGO_IS_PPC_FALSE='#' @@ -15799,6 +15809,10 @@ if test -z "${LIBGO_IS_MIPSO64_TRUE}" && test -z "${LIBGO_IS_MIPSO64_FALSE}"; th as_fn_error "conditional \"LIBGO_IS_MIPSO64\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${LIBGO_IS_MIPS64_TRUE}" && test -z "${LIBGO_IS_MIPS64_FALSE}"; then + as_fn_error "conditional \"LIBGO_IS_MIPS64\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${LIBGO_IS_PPC_TRUE}" && test -z "${LIBGO_IS_PPC_FALSE}"; then as_fn_error "conditional \"LIBGO_IS_PPC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 |