From: Andrea Corallo Date: Wed, 15 Mar 2023 15:18:04 +0000 (+0100) Subject: * configure.ac: Fix native comp compatibility check (bug#61960) X-Git-Tag: emacs-29.0.90~174 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=61adb44318a30d599712b69c7e6606510ce0ce2c;p=emacs.git * configure.ac: Fix native comp compatibility check (bug#61960) --- diff --git a/configure.ac b/configure.ac index ac93d003b70..c818343a5ad 100644 --- a/configure.ac +++ b/configure.ac @@ -4328,8 +4328,8 @@ If you really want to try it anyway, use the configure option fi if test "${with_native_compilation}" != "no"; then - if test "${HAVE_PDUMPER}" = no; then - AC_MSG_ERROR(['--with-native-compilation' requires '--with-dumping=pdumper']) + if test "$with_unexec" = yes; then + AC_MSG_ERROR(['--with-native-compilation' is not compatible with unexec]) fi if test "${HAVE_ZLIB}" = no; then AC_MSG_ERROR(['--with-native-compilation' requires zlib])