Since we can no longer built .a files:

- remove -disable/-enable-dll option
- error and abort if no suitable shared library linking is possible
This commit is contained in:
Marcus Meissner 2000-11-13 04:14:05 +00:00 committed by Alexandre Julliard
parent 7f1ab7acf6
commit 45d31de317
2 changed files with 347 additions and 352 deletions

689
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -15,10 +15,6 @@ DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
CURSES=yes
OPENGL=normal
AC_ARG_ENABLE(dll,
[ --disable-dll build static libraries instead of DLLs],
[if test "$enableval" = "no"; then LIBEXT="a"; fi])
AC_ARG_ENABLE(debug,
[ --disable-debug compile out all debugging messages],
[if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
@ -539,7 +535,11 @@ then
fi
if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
then
LIBEXT="a"
echo "*** It is currently not possible to build WINE without shared"
echo "*** library (.so) support to allow transparent switch between .so"
echo "*** and .dll files."
echo "*** If you are using Linux, you will need a newer binutils."
exit 1
fi
fi