(USE_THREADS, GUILE_ISELECT): Define always. We define them with

AC_DEFINE and not in some header file so that they are visible exactly
in the same way as they used to be.
This commit is contained in:
Marius Vollmer 2002-11-10 22:06:32 +00:00
commit d8db94d601

View file

@ -140,6 +140,11 @@ AC_DEFINE(DEBUG_EXTENSIONS, 1,
AC_DEFINE(READER_EXTENSIONS, 1,
[Define if you want support for debugging Scheme programs.])
dnl These two used to be optional, too, but now they are always
dnl defined.
AC_DEFINE(USE_THREADS, 1, [Deprecated, always defined.])
AC_DEFINE(GUILE_ISELECT, 1, [Deprecated, always defined.])
AC_ARG_ENABLE(elisp,
[ --disable-elisp omit Emacs Lisp support],,
enable_elisp=yes)