Skip to content

Commit

Permalink
$enable_gssapi could be empty, so use "x$foo" trick on call to test(1).
Browse files Browse the repository at this point in the history
  • Loading branch information
itojun committed Apr 18, 2001
1 parent cb14ea6 commit afe2bef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kame/kame/racoon/configure
Expand Up @@ -1163,7 +1163,7 @@ else
enable_gssapi=no
fi

if test $enable_gssapi = "yes"; then
if test "x$enable_gssapi" = "xyes"; then
cat >> confdefs.h <<\EOF
#define HAVE_GSSAPI 1
EOF
Expand Down
2 changes: 1 addition & 1 deletion kame/kame/racoon/configure.in
Expand Up @@ -55,7 +55,7 @@ AC_MSG_CHECKING(if --enable-gssapi option is specified)
AC_ARG_ENABLE(rc5,
[ --enable-gssapi enable GSS-API authentication],
[], [enable_gssapi=no])
if test $enable_gssapi = "yes"; then
if test "x$enable_gssapi" = "xyes"; then
AC_DEFINE(HAVE_GSSAPI)
fi
AC_MSG_RESULT($enable_gssapi)
Expand Down

0 comments on commit afe2bef

Please sign in to comment.