]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Change message macro for configure selection
authorGilles Espinasse <g.esp@free.fr>
Wed, 29 May 2013 16:13:57 +0000 (12:13 -0400)
committerGreg Hudson <ghudson@mit.edu>
Wed, 29 May 2013 16:15:12 +0000 (12:15 -0400)
AC_MSG_RESULT is to print result after AC_MSG_CHECKING.
AC_MSG_NOTICE is to deliver message to user.
So use AC_MSG_NOTICE for --with options.

Remove overquoting too.

ticket: 7648

src/configure.in

index 489b82ad7e964798e8ca6be14ad54d854a807188..4e49046e1773e9f650c7219ee6871eb3f37c0aeb 100644 (file)
@@ -131,7 +131,7 @@ CHECK_SIGNALS
 AC_ARG_WITH([vague-errors],
 AC_HELP_STRING([--with-vague-errors],[Do not @<:@do@:>@ send helpful errors to client]), , withval=no)
 if test "$withval" = yes; then
-       AC_MSG_RESULT(Supplying vague error messages to KDC clients)
+       AC_MSG_NOTICE(Supplying vague error messages to KDC clients)
        AC_DEFINE(KRBCONF_VAGUE_ERRORS,1,[Define if the KDC should return only vague error codes to clients])
 fi
 
@@ -141,7 +141,7 @@ CRYPTO_IMPL="builtin"
 AC_ARG_WITH([crypto-impl],
 AC_HELP_STRING([--with-crypto-impl=IMPL], [use specified crypto implementation @<:@builtin@:>@]),
 [CRYPTO_IMPL=$withval
-AC_MSG_RESULT("k5crypto will use \'$withval\'")
+AC_MSG_NOTICE(k5crypto will use '$withval')
 ], withval=builtin)
 case "$withval" in
 builtin)
@@ -182,7 +182,7 @@ else
 AC_ARG_WITH([prng-alg],
 AC_HELP_STRING([--with-prng-alg=ALG], [use specified PRNG algorithm. Ignored for nss. @<:@fortuna@:>@]),
 [PRNG_ALG=$withval
-AC_MSG_RESULT("k5crypto will use \'$withval\'")
+AC_MSG_NOTICE(k5crypto will use '$withval')
 ], PRNG_ALG=fortuna)
 fi
 AC_CONFIG_COMMANDS(PRNG_ALG, , PRNG_ALG=$PRNG_ALG)
@@ -197,7 +197,7 @@ PKINIT_CRYPTO_IMPL="$CRYPTO_IMPL"
 AC_ARG_WITH([pkinit-crypto-impl],
 AC_HELP_STRING([--with-pkinit-crypto-impl=IMPL], [use specified pkinit crypto implementation @<:@openssl@:>@]),
 [PKINIT_CRYPTO_IMPL=$withval
-AC_MSG_RESULT("pkinit will use \'$withval\'")
+AC_MSG_NOTICE(pkinit will use '$withval')
 ], withval=$PKINIT_CRYPTO_IMPL)
 case "$withval" in
 builtin|openssl)
@@ -272,7 +272,7 @@ AC_SUBST(AESNI_FLAGS)
 AC_ARG_WITH([kdc-kdb-update],
 AC_HELP_STRING([--with-kdc-kdb-update],[Update the database @<:@don't update@:>@]), , withval=no)
 if test "$withval" = yes; then
-       AC_MSG_RESULT(Updating KDC database with each request)
+       AC_MSG_NOTICE(Updating KDC database with each request)
        AC_DEFINE(KRBCONF_KDC_MODIFIES_KDB,1,[Define if KDC should update database with each request])
 fi