Update configure after the changes of the last commit

This should have been included in it but was forgotten.
This commit is contained in:
Vadim Zeitlin 2022-12-04 13:33:36 +00:00
parent c2f3a3db01
commit 0f54ec8b36
2 changed files with 19 additions and 9 deletions

View file

@ -4927,9 +4927,14 @@ dnl ------------------------------------------------------------------------
dnl DLL support
dnl ------------------------------------------------------------------------
dnl under MSW we always have LoadLibrary/GetProcAddress
if test "$TOOLKIT" != "MSW"; then
dnl under MSW we always have LoadLibrary/GetProcAddress and always use
dnl wxDynamicLibrary
if test "$TOOLKIT" = "MSW"; then
if test "$wxUSE_DYNLIB_CLASS" != "yes" ; then
AC_MSG_WARN([Not disabling wxDynamicLibrary support required by wxMSW])
wxUSE_DYNLIB_CLASS=yes
fi
else
HAVE_DL_FUNCS=0
HAVE_SHL_FUNCS=0
if test "$wxUSE_DYNAMIC_LOADER" = "yes" -o "$wxUSE_DYNLIB_CLASS" = "yes" ; then