mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 23:28:08 -07:00
Closes: https://bugs.gentoo.org/723090 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: David Seifert <soap@gentoo.org>
21 lines
516 B
Diff
21 lines
516 B
Diff
--- 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)
|