diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.ac | 2 | 
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2004-10-22  Marcus Brinkmann  <[email protected]> + +	* configure.ac: Set HAVE_GPGSM to true only if $GPGSM is not "no". +  2004-09-30  Marcus Brinkmann  <[email protected]>  	Released 1.0.0. diff --git a/configure.ac b/configure.ac index 53af0950..8d2f092f 100644 --- a/configure.ac +++ b/configure.ac @@ -330,7 +330,7 @@ else    AC_DEFINE_UNQUOTED(GPGSM_PATH, "$GPGSM", [Path to the GPGSM binary.])    AC_SUBST(GPGSM)  fi -AM_CONDITIONAL(HAVE_GPGSM, [test -n "$GPGSM"]) +AM_CONDITIONAL(HAVE_GPGSM, ["$GPGSM" != "no"])  dnl Check for GPGSM version requirement.  GPGSM_VERSION=unknown  ok=maybe  | 
