diff options
author | Andrea Corallo <akrl@sdf.org> | 2019-09-08 10:11:36 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:37:45 +0100 |
commit | 06ad74581385cd1930a073b2fda314230b254608 (patch) | |
tree | 22a4e76a5217e35006a9668c08ce84680320a3b9 /src/comp.c | |
parent | 17259826f263f87d45eb98c8effe0ba7ee774f5d (diff) | |
download | emacs-06ad74581385cd1930a073b2fda314230b254608.tar.gz emacs-06ad74581385cd1930a073b2fda314230b254608.tar.bz2 emacs-06ad74581385cd1930a073b2fda314230b254608.zip |
rename HAVE_LIBGCCJIT -> HAVE_NATIVE_COMP
Diffstat (limited to 'src/comp.c')
-rw-r--r-- | src/comp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c index 00e15601998..2b6f8bf0536 100644 --- a/src/comp.c +++ b/src/comp.c @@ -20,7 +20,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include <config.h> -#ifdef HAVE_LIBGCCJIT +#ifdef HAVE_NATIVE_COMP #include <stdlib.h> #include <stdio.h> @@ -3283,4 +3283,4 @@ syms_of_comp (void) comp_speed = DEFAULT_SPEED; } -#endif /* HAVE_LIBGCCJIT */ +#endif /* HAVE_NATIVE_COMP */ |