--- gforth/configure.in 1996/02/13 11:12:15 1.20 +++ gforth/configure.in 1996/02/19 19:19:33 1.22 @@ -82,17 +82,17 @@ case "$ac_cv_sizeof_char_p" in esac AC_CHECK_INT_TYPE(sizeof(char *),cell,long) -if test $ac_cv_int_type_cell != int; then +if test "$ac_cv_int_type_cell" != int; then echo "So, sizeof(pointer)!=sizeof(int); looks like a DOS C compiler to me." echo "Since you don't have a proper C on this machine, that's one more reason" echo "to use Forth;-)" fi AC_CHECK_INT_TYPE(2*sizeof(char *),double cell,long long) -if test $ac_cv_int_type_double_cell = none; then +if test "$ac_cv_int_type_double_cell" = none; then echo "Emulating double-cell arithmetic. This may be slow." echo "If you find this unacceptable, ask the GCC maintainers to provide proper" - echo 'long longs for your machine (the GCC manual states that they \"are twice as' - echo "long as \`long int\'\")." + echo 'long longs for your machine (the GCC manual states that they "are twice as' + echo "long as \`long int'\")." LIBOBJS="$LIBOBJS dblsub.o" AC_DEFINE(BUGGY_LONG_LONG) fi @@ -103,7 +103,7 @@ AC_CANONICAL_HOST case "$host_cpu" in hppa*) mach_h=hppa - LIBOBJS="cache.o" + LIBOBJS="$LIBOBJS cache.o" LDFLAGS="-Xlinker -N" LIBS="-L/lib/pa1.1/" ;;