Add a library check for iconv, since it works now and it doesn't always live in libc.
This commit is contained in:
parent
ec9b4317ca
commit
add9c7f6b9
|
@ -127,6 +127,12 @@ AC_CHECK_LIB(c, gethostbyname, [:], [
|
|||
AC_CHECK_LIB(network, gethostbyname, [LIBS="-lnetwork $LIBS"] [:])
|
||||
]) ])
|
||||
|
||||
dnl iconv? check the usual locations
|
||||
AC_CHECK_LIB(c, iconv, [:], [
|
||||
AC_CHECK_LIB(iconv, iconv, [
|
||||
LIBS="-liconv $LIBS"
|
||||
], [:]) ])
|
||||
|
||||
dnl check for stl library
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
|
|
Loading…
Reference in New Issue