Diff for /gforth/configure.in between versions 1.192 and 1.196

version 1.192, 2007/06/24 21:01:45 version 1.196, 2007/07/05 15:25:30
Line 591  AC_MSG_RESULT($ac_noreorder_blocks) Line 591  AC_MSG_RESULT($ac_noreorder_blocks)
 AC_MSG_CHECKING([if $CC understands -falign-labels=1])  AC_MSG_CHECKING([if $CC understands -falign-labels=1])
 CFLAGS_1="$CFLAGS"  CFLAGS_1="$CFLAGS"
 CFLAGS="$CFLAGS -falign-labels=1"  CFLAGS="$CFLAGS -falign-labels=1"
 AC_TRY_COMPILE(,,ac_noreorder_blocks=yes;ENGINE_FLAGS="$ENGINE_FLAGS -falign-labels=1",ac_align_labels=no)  AC_TRY_COMPILE(,,ac_align_labels=yes;ENGINE_FLAGS="$ENGINE_FLAGS -falign-labels=1",ac_align_labels=no)
 CFLAGS="$CFLAGS_1"  CFLAGS="$CFLAGS_1"
 AC_MSG_RESULT($ac_align_labels)  AC_MSG_RESULT($ac_align_labels)
   
   # Try if GCC understands -falign-loops=1
   AC_MSG_CHECKING([if $CC understands -falign-loops=1])
   CFLAGS_1="$CFLAGS"
   CFLAGS="$CFLAGS -falign-loops=1"
   AC_TRY_COMPILE(,,ac_align_loops=yes;ENGINE_FLAGS="$ENGINE_FLAGS -falign-loops=1",ac_align_loops=no)
   CFLAGS="$CFLAGS_1"
   AC_MSG_RESULT($ac_align_loops)
   
   # Try if GCC understands -falign-jumps=1
   AC_MSG_CHECKING([if $CC understands -falign-jumps=1])
   CFLAGS_1="$CFLAGS"
   CFLAGS="$CFLAGS -falign-jumps=1"
   AC_TRY_COMPILE(,,ac_align_jumps=yes;ENGINE_FLAGS="$ENGINE_FLAGS -falign-jumps=1",ac_align_jumps=no)
   CFLAGS="$CFLAGS_1"
   AC_MSG_RESULT($ac_align_jumps)
   
 # Try if GCC understands __attribute__((unused))  # Try if GCC understands __attribute__((unused))
 AC_MSG_CHECKING([how to suppress 'unused variable' warnings])  AC_MSG_CHECKING([how to suppress 'unused variable' warnings])
 AC_TRY_COMPILE(,[int __attribute__((unused)) foo;], MAYBE_UNUSED='__attribute__((unused))',)  AC_TRY_COMPILE(,[int __attribute__((unused)) foo;], MAYBE_UNUSED='__attribute__((unused))',)
 AC_DEFINE_UNQUOTED(MAYBE_UNUSED,$MAYBE_UNUSED,[attribute for possibly unused variables])  AC_DEFINE_UNQUOTED(MAYBE_UNUSED,$MAYBE_UNUSED,[attribute for possibly unused variables])
 AC_MSG_RESULT($MAYBE_UNUSED)  AC_MSG_RESULT($MAYBE_UNUSED)
   
   #try if m4 understands -s
   AC_MSG_CHECKING([how to invoke m4])
   if m4 -s /dev/null >/dev/null 2>&1; then
    M4="m4 -s"
   else
    M4=m4
   fi
   AC_SUBST(M4)
   AC_DEFINE_UNQUOTED(M4,"$M4",[How to invoke m4])
   AC_MSG_RESULT($M4)
   
 echo "machine='$machine'"  echo "machine='$machine'"
   
 dnl AC_CHECK_PROG(asm_fs,asm.fs,arch/$machine/asm.fs,,$srcdir/arch/$machine)  dnl AC_CHECK_PROG(asm_fs,asm.fs,arch/$machine/asm.fs,,$srcdir/arch/$machine)

Removed from v.1.192  
changed lines
  Added in v.1.196


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>