summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-19 09:29:49 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-19 09:29:49 +0000
commit3a58c0b3191476851487e55f8db4b0deb99f7b10 (patch)
tree660b7ac992c3a6bfd4885a48722f8898db20cca1
parent738abe63ace672df7b665593dcc6820a126191c7 (diff)
downloadrsyslog-3a58c0b3191476851487e55f8db4b0deb99f7b10.tar.gz
rsyslog-3a58c0b3191476851487e55f8db4b0deb99f7b10.tar.xz
rsyslog-3a58c0b3191476851487e55f8db4b0deb99f7b10.zip
applied patch from Bartosz Kuźma to fix portability bug in configure.ac
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ff8587af..970f864f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -200,7 +200,7 @@ AC_MSG_CHECKING(for SYSLOG_UNIXAF support)
AC_ARG_ENABLE([unix],
[AS_HELP_STRING([--disable-unix], [disable support for unix])],
[
- if test "x${enableval}" == "xyes"; then
+ if test "x${enableval}" = "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE([SYSLOG_UNIXAF], [1], [Description])
else
@@ -235,7 +235,7 @@ AC_MSG_CHECKING(for FSSTND support)
AC_ARG_ENABLE([fsstnd],
[AS_HELP_STRING([--disable-fsstnd], [disable support for FSSTND])],
[
- if test "x${enableval}" == "xyes"; then
+ if test "x${enableval}" = "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE([FSSTND], [1], [Description])
else