mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
Auto-commit of generated files.
This commit is contained in:
parent
e93864f943
commit
afd07e01e3
@ -55,6 +55,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* Define if Emacs cannot be dumped on your system. */
|
||||
#undef CANNOT_DUMP
|
||||
|
||||
/* Define this to enable compile time checks for the Lisp_Object data type. */
|
||||
#undef CHECK_LISP_OBJECT_TYPE
|
||||
|
||||
/* Define to one of '_getb67', 'GETB67', 'getb67' for Cray-2 and Cray-YMP
|
||||
systems. This function is required for 'alloca.c' support on those systems.
|
||||
*/
|
||||
@ -1091,9 +1094,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* Define to 1 if using GTK. */
|
||||
#undef USE_GTK
|
||||
|
||||
/* Define this to use a lisp union for the Lisp_Object data type. */
|
||||
#undef USE_LISP_UNION_TYPE
|
||||
|
||||
/* Define to 1 if using the Lucid X toolkit. */
|
||||
#undef USE_LUCID
|
||||
|
||||
|
18
autogen/configure
vendored
18
autogen/configure
vendored
@ -1354,7 +1354,7 @@ enable_ns_self_contained
|
||||
enable_asserts
|
||||
enable_locallisppath
|
||||
enable_checking
|
||||
enable_use_lisp_union_type
|
||||
enable_check_lisp_object_type
|
||||
enable_profiling
|
||||
enable_autodepend
|
||||
enable_dependency_tracking
|
||||
@ -2006,10 +2006,10 @@ Optional Features:
|
||||
only specific categories of checks. Categories are:
|
||||
all,yes,no. Flags are: stringbytes, stringoverrun,
|
||||
stringfreelist, xmallocoverrun, conslist
|
||||
--enable-use-lisp-union-type
|
||||
use a union for the Lisp_Object data type. This is
|
||||
only useful for development for catching certain
|
||||
types of bugs.
|
||||
--enable-check-lisp-object-type
|
||||
enable compile time checks for the Lisp_Object data
|
||||
type. This is useful for development for catching
|
||||
certain types of bugs.
|
||||
--enable-profiling build emacs with profiling support. This might not
|
||||
work on all platforms
|
||||
--enable-autodepend automatically generate dependencies to .h-files.
|
||||
@ -4328,11 +4328,11 @@ $as_echo "#define GC_CHECK_CONS_LIST 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
# Check whether --enable-use-lisp-union-type was given.
|
||||
if test "${enable_use_lisp_union_type+set}" = set; then :
|
||||
enableval=$enable_use_lisp_union_type; if test "${enableval}" != "no"; then
|
||||
# Check whether --enable-check-lisp-object-type was given.
|
||||
if test "${enable_check_lisp_object_type+set}" = set; then :
|
||||
enableval=$enable_check_lisp_object_type; if test "${enableval}" != "no"; then
|
||||
|
||||
$as_echo "#define USE_LISP_UNION_TYPE 1" >>confdefs.h
|
||||
$as_echo "#define CHECK_LISP_OBJECT_TYPE 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user