From: Pekka Riikonen Date: Tue, 13 Feb 2001 19:21:18 +0000 (+0000) Subject: updates. X-Git-Tag: SILC.0.1~236 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=5f97e76ac53be3bf7d448bdf89b51a372661d392;p=silc.git updates. --- diff --git a/configure.in.pre b/configure.in.pre index 6740a898..54b011de 100644 --- a/configure.in.pre +++ b/configure.in.pre @@ -232,12 +232,12 @@ AC_ARG_WITH(gmp, AC_CHECK_HEADER(gmp.h, AC_CHECK_LIB(gmp, __gmpz_init, AM_CONDITIONAL(SILC_BUILD_GMP, test x$withval = yes) - AC_MSG_RESULT(no), + AC_MSG_RESULT(GMP will not be compiled), AM_CONDITIONAL(SILC_BUILD_GMP, test x$withval != yes) - AC_MSG_RESULT(yes) + AC_MSG_RESULT(GMP will be compiled) ), AM_CONDITIONAL(SILC_BUILD_GMP, test x$withval != yes) - AC_MSG_RESULT(yes) + AC_MSG_RESULT(GMP will be compiled) ) ;; esac ], [ @@ -245,14 +245,14 @@ esac ], [ AC_CHECK_LIB(gmp, __gmpz_init, build_gmp=false AM_CONDITIONAL(SILC_BUILD_GMP, test x$build_gmp = xtrue) - AC_MSG_RESULT(no), + AC_MSG_RESULT(GMP will not be compiled), build_gmp=true AM_CONDITIONAL(SILC_BUILD_GMP, test x$build_gmp = xtrue) - AC_MSG_RESULT(yes) + AC_MSG_RESULT(GMP will be compiled) ), build_gmp=true AM_CONDITIONAL(SILC_BUILD_GMP, test x$build_gmp = xtrue) - AC_MSG_RESULT(yes) + AC_MSG_RESULT(GMP will be compiled) ) ])