blob: cf775e7c644e50a529b15e99580f5faa329fa3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@
dnl Checks for libraries.
check_popt=""
AC_CHECK_LIB([popt], [main], check_popt=true)
-if test "x$check_popt" == x ; then
+if test "x$check_popt" = x ; then
AC_MSG_WARN([ libpopt not found.])
else
POPT_LIBS=-lpopt
@@ -47,7 +47,7 @@
check_iconv=""
AC_CHECK_HEADERS([iconv.h],check_iconv=true)
-if test "x$check_iconv" == x ; then
+if test "x$check_iconv" = x ; then
AC_MSG_ERROR([*** iconv.h not found.])
fi
AC_CHECK_LIB([iconv], libiconv_open)
|