Added the missing check for libw needed for wcslen() (Just defines in headers

don't fix such a problem.)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2288 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1999-04-26 15:15:11 +00:00
parent 1b3667ab28
commit 6a3ab8b15a
4 changed files with 571 additions and 595 deletions

View File

@@ -464,6 +464,13 @@ dnl #######################
dnl # check for functions #
dnl #######################
WCHAR_LINK=
dnl check for wcslen
AC_CHECK_LIB(c,wcslen,,
AC_CHECK_LIB(w,wcslen,
WCHAR_LINK="-lw" ,AC_MSG_ERROR("Cannot find wcslen function.")))
AC_SUBST(WCHAR_LINK)
dnl check for vprintf/vsprintf() which are GNU extensions
AC_FUNC_VPRINTF