mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-22 04:21:16 -08:00
re-add deprecation of rt and profile (rebase thing)
This commit is contained in:
parent
b87fc19afb
commit
d4370d1b31
3 changed files with 12 additions and 10 deletions
7
src/configure
vendored
7
src/configure
vendored
|
|
@ -1521,8 +1521,7 @@ Optional Packages:
|
|||
--with-rt Deprecated! include MIT-RT testing environment
|
||||
(yes|builtin|no, default=NO)
|
||||
--with-profile Deprecated! include CMUCL's simple profiler
|
||||
(yes|builtin|no, default=YES if Boehm-Weiser garbage
|
||||
collector used)
|
||||
(yes|builtin|no, default=NO)
|
||||
--with-dffi dynamic foreign function interface
|
||||
(system|included|auto|no, default=AUTO if libffi
|
||||
available)
|
||||
|
|
@ -2859,7 +2858,7 @@ fi
|
|||
if test "${with_profile+set}" = set; then :
|
||||
withval=$with_profile;
|
||||
else
|
||||
with_profile=NO
|
||||
with_profile=no
|
||||
fi
|
||||
|
||||
|
||||
|
|
@ -9341,7 +9340,7 @@ fi
|
|||
done
|
||||
|
||||
|
||||
for ac_func in sched_yield uname fseeko backtrace backtrace_symbols
|
||||
for ac_func in sched_yield uname fseeko dladdr backtrace backtrace_symbols
|
||||
do :
|
||||
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
|
||||
|
|
|
|||
|
|
@ -185,15 +185,15 @@ AC_ARG_WITH(bytecmp,
|
|||
|
||||
AC_ARG_WITH(rt,
|
||||
AS_HELP_STRING( [--with-rt],
|
||||
[include MIT-RT testing environment]
|
||||
[(yes|builtin|no, default=YES)]),
|
||||
[], [with_rt=yes])
|
||||
[Deprecated! include MIT-RT testing environment]
|
||||
[(yes|builtin|no, default=NO)]),
|
||||
[], [with_rt=no])
|
||||
|
||||
AC_ARG_WITH(profile,
|
||||
AS_HELP_STRING( [--with-profile],
|
||||
[include CMUCL's simple profiler]
|
||||
[(yes|builtin|no, default=YES if Boehm-Weiser garbage collector used)]),
|
||||
[], [with_profile=yes])
|
||||
[Deprecated! include CMUCL's simple profiler]
|
||||
[(yes|builtin|no, default=NO)]),
|
||||
[], [with_profile=no])
|
||||
|
||||
AC_ARG_WITH(dffi,
|
||||
AS_HELP_STRING( [--with-dffi],
|
||||
|
|
|
|||
|
|
@ -102,6 +102,9 @@
|
|||
/* Define to 1 if you have the <dirent.h> header file. */
|
||||
#undef HAVE_DIRENT_H
|
||||
|
||||
/* Define to 1 if you have the `dladdr' function. */
|
||||
#undef HAVE_DLADDR
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue