From 94c2e1e4cecff594208152eb52ef1cd64292d861 Mon Sep 17 00:00:00 2001 From: yangsheng Date: Thu, 14 May 2009 15:15:26 +0000 Subject: [PATCH] Branch b_release_1_8_1 b=18668 Fixed the autoconf warning message. Author: adilger --- libsysio/configure.in | 60 +++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/libsysio/configure.in b/libsysio/configure.in index 2aedbf1..4fcd3c0 100644 --- a/libsysio/configure.in +++ b/libsysio/configure.in @@ -361,49 +361,49 @@ if test x$have_st_gen = xyes; then fi AC_MSG_CHECKING(whether .text pseudo-op must be used) -AC_CACHE_VAL(sysio_asm_dot_text, [dnl +AC_CACHE_VAL(am_cv_sysio_asm_dot_text, [dnl cat > conftest.s </dev/null; then - sysio_asm_dot_text=.text + am_cv_sysio_asm_dot_text=.text fi rm -f conftest*]) -if test -z "$sysio_dot_text"; then +if test -z "$am_cv_sysio_asm_dot_text"; then AC_MSG_RESULT(no) else AC_MSG_RESULT(yes) fi AC_CACHE_CHECK(for assembler global-symbol directive, - sysio_asm_global_directive, [dnl -sysio_asm_global_directive=UNKNOWN + am_cv_sysio_asm_global_directive, [dnl +am_cv_sysio_asm_global_directive=UNKNOWN for ac_globl in .globl .global .EXPORT; do cat > conftest.s </dev/null; then - sysio_asm_global_directive=${ac_globl} + am_cv_sysio_asm_global_directive=${ac_globl} fi rm -f conftest* - test $sysio_asm_global_directive != UNKNOWN && break + test $am_cv_sysio_asm_global_directive != UNKNOWN && break done]) -if test $sysio_asm_global_directive = UNKNOWN; then +if test $am_cv_sysio_asm_global_directive = UNKNOWN; then AC_MSG_ERROR(cannot determine asm global directive) #else -# AC_DEFINE_UNQUOTED(ASM_GLOBAL_DIRECTIVE, ${sysio_asm_global_directive}) +# AC_DEFINE_UNQUOTED(ASM_GLOBAL_DIRECTIVE, ${am_cv_sysio_asm_global_directive}) fi AC_CACHE_CHECK(for .set assembler directive, - sysio_asm_set_directive, [dnl + am_cv_sysio_asm_set_directive, [dnl cat > conftest.s<&AC_FD_CC 2>&AC_FD_CC; then - sysio_asm_set_directive=yes + am_cv_sysio_asm_set_directive=yes else - sysio_asm_set_directive=no + am_cv_sysio_asm_set_directive=no fi rm -f conftest*]) -#if test $sysio_asm_set_directive = yes; then +#if test $am_cv_sysio_asm_set_directive = yes; then # AC_DEFINE(HAVE_ASM_SET_DIRECTIVE) #fi -AC_CACHE_CHECK(for assembler .weak directive, sysio_asm_weak_directive, +AC_CACHE_CHECK(for assembler .weak directive, am_cv_sysio_asm_weak_directive, [dnl cat > conftest.s </dev/null; then - sysio_asm_weak_directive=yes + am_cv_sysio_asm_weak_directive=yes else - sysio_asm_weak_directive=no + am_cv_sysio_asm_weak_directive=no fi rm -f conftest*]) -if test $sysio_asm_weak_directive = no; then +if test $am_cv_sysio_asm_weak_directive = no; then AC_CACHE_CHECK(for assembler .weakext directive, - sysio_asm_weakext_directive, [dnl + am_cv_sysio_asm_weakext_directive, [dnl cat > conftest.s </dev/null; then - sysio_asm_weakext_directive=yes + am_cv_sysio_asm_weakext_directive=yes else - sysio_asm_weakext_directive=no + am_cv_sysio_asm_weakext_directive=no fi rm -f conftest*]) fi # no .weak -if test x$sysio_asm_weak_directive = xyes; then +if test x$am_cv_sysio_asm_weak_directive = xyes; then AC_DEFINE(HAVE_ASM_WEAK_DIRECTIVE) fi -if test x$sysio_asm_weakext_directive = xyes; then +if test x$am_cv_sysio_asm_weakext_directive = xyes; then AC_DEFINE(HAVE_ASM_WEAKEXT_DIRECTIVE) fi -- 1.8.3.1