* [PATCH] configure.ac: enable the GSSAPI by default
@ 2013-12-09 18:32 Steve Dickson
2013-12-09 21:00 ` Steve Dickson
0 siblings, 1 reply; 2+ messages in thread
From: Steve Dickson @ 2013-12-09 18:32 UTC (permalink / raw)
To: Libtirpc-devel Mailing List; +Cc: Linux NFS Mailing list
This changes GSSAPI support to be enabled by default.
To disable the support use --disable-gssapi
Signed-off-by: Steve Dickson <steved@redhat.com>
---
configure.ac | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/configure.ac b/configure.ac
index c95df38..b9906dc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,12 +5,11 @@ AM_MAINTAINER_MODE
AC_CONFIG_SRCDIR([src/auth_des.c])
AC_CONFIG_MACRO_DIR([m4])
-AC_ARG_ENABLE(gss,[ --enable-gss Turn on gss api], [case "${enableval}" in
- yes) gss=true ;;
- no) gss=false ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --enable-gss) ;;
- esac],[gss=false])
-AM_CONDITIONAL(GSS, test x$gss = xtrue)
+AC_ARG_ENABLE(gssapi,
+ [AC_HELP_STRING([--disable-gssapi], [Disable GSSAPI support @<:@default=no@:>@])],
+ [],[enable_gssapi=yes])
+AM_CONDITIONAL(GSS, test x$enable_gssapi = xyes)
+
AC_ARG_WITH(gssglue,
[ --with-gssglue Use libgssglue],
[case "${enableval}" in
@@ -20,7 +19,8 @@ AC_ARG_WITH(gssglue,
esac],
[gssglue=false])
AM_CONDITIONAL(USEGSSGLUE, test x$gssglue = xtrue)
-if test x$gss = xtrue; then
+
+if test x$enable_gssapi = xyes; then
if test x$gssglue = xtrue; then
PKG_CHECK_MODULES(GSSAPI, libgssglue, [],
AC_MSG_ERROR([Unable to locate information required to use libgssglue.]))
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] configure.ac: enable the GSSAPI by default
2013-12-09 18:32 [PATCH] configure.ac: enable the GSSAPI by default Steve Dickson
@ 2013-12-09 21:00 ` Steve Dickson
0 siblings, 0 replies; 2+ messages in thread
From: Steve Dickson @ 2013-12-09 21:00 UTC (permalink / raw)
To: Libtirpc-devel Mailing List; +Cc: Linux NFS Mailing list
On 09/12/13 13:32, Steve Dickson wrote:
> This changes GSSAPI support to be enabled by default.
> To disable the support use --disable-gssapi
>
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed...
steved.
> ---
> configure.ac | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/configure.ac b/configure.ac
> index c95df38..b9906dc 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -5,12 +5,11 @@ AM_MAINTAINER_MODE
> AC_CONFIG_SRCDIR([src/auth_des.c])
> AC_CONFIG_MACRO_DIR([m4])
>
> -AC_ARG_ENABLE(gss,[ --enable-gss Turn on gss api], [case "${enableval}" in
> - yes) gss=true ;;
> - no) gss=false ;;
> - *) AC_MSG_ERROR(bad value ${enableval} for --enable-gss) ;;
> - esac],[gss=false])
> -AM_CONDITIONAL(GSS, test x$gss = xtrue)
> +AC_ARG_ENABLE(gssapi,
> + [AC_HELP_STRING([--disable-gssapi], [Disable GSSAPI support @<:@default=no@:>@])],
> + [],[enable_gssapi=yes])
> +AM_CONDITIONAL(GSS, test x$enable_gssapi = xyes)
> +
> AC_ARG_WITH(gssglue,
> [ --with-gssglue Use libgssglue],
> [case "${enableval}" in
> @@ -20,7 +19,8 @@ AC_ARG_WITH(gssglue,
> esac],
> [gssglue=false])
> AM_CONDITIONAL(USEGSSGLUE, test x$gssglue = xtrue)
> -if test x$gss = xtrue; then
> +
> +if test x$enable_gssapi = xyes; then
> if test x$gssglue = xtrue; then
> PKG_CHECK_MODULES(GSSAPI, libgssglue, [],
> AC_MSG_ERROR([Unable to locate information required to use libgssglue.]))
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-12-09 20:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-09 18:32 [PATCH] configure.ac: enable the GSSAPI by default Steve Dickson
2013-12-09 21:00 ` Steve Dickson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).