Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 723090
Collapse All | Expand All

(-)a/configure.ac (-2 / +2 lines)
Lines 33-39 Link Here
33
dnl Checks for libraries.
33
dnl Checks for libraries.
34
check_popt=""
34
check_popt=""
35
AC_CHECK_LIB([popt], [main], check_popt=true)
35
AC_CHECK_LIB([popt], [main], check_popt=true)
36
if test "x$check_popt" == x ; then
36
if test "x$check_popt" = x ; then
37
	AC_MSG_WARN([ libpopt not found.])
37
	AC_MSG_WARN([ libpopt not found.])
38
else
38
else
39
	POPT_LIBS=-lpopt
39
	POPT_LIBS=-lpopt
Lines 47-53 Link Here
47
47
48
check_iconv=""
48
check_iconv=""
49
AC_CHECK_HEADERS([iconv.h],check_iconv=true)
49
AC_CHECK_HEADERS([iconv.h],check_iconv=true)
50
if test "x$check_iconv" == x ; then
50
if test "x$check_iconv" = x ; then
51
	AC_MSG_ERROR([*** iconv.h not found.])
51
	AC_MSG_ERROR([*** iconv.h not found.])
52
fi
52
fi
53
53

Return to bug 723090