annotate modules/common/configure-post.ac @ 4623:a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
lisp/ChangeLog addition:
2009-02-22 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-force-escape-quoted): New variable,
used to force `byte-compile-insert-header' to treat the output as
having characters above ?\xFF.
(byte-compile-from-buffer):
If the compiled output contains characters above ?\xFF, and
byte-compile-dynamic-docstrings or byte-compile-dynamic is non-nil
(or we're using an inappropriate coding system) recompile the
file, turning off the dynamic features and using a more
appropriate header.
(byte-compile-insert-header): Pay attention to
byte-compile-force-escape-quoted.
tests/ChangeLog addition:
2009-02-22 Aidan Kehoe <kehoea@parhasard.net>
* automated/mule-tests.el:
Use more realistic tests for the escape-quoted mule encoding
checks; update a comment, change a Known-Bug-Expect-Failure to a
normal test now that we've addressed an old bug.
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Sun, 22 Feb 2009 19:57:28 +0000 |
parents |
d87493ecc64b |
children |
fe82be65969e |
rev |
line source |
1083
|
1
|
|
2 # This part should appear unchanged in every module configure.ac
|
|
3 AC_SUBST(PROGNAME, "module")
|
|
4 AC_SUBST(MOD_CC, "@ELLCC@")
|
|
5 AC_SUBST(MODARCHDIR, "\$(shell @ELLCC@ --mod-archdir)")
|
|
6 AC_SUBST(MAKE_DOCFILE, "\$(MODARCHDIR)/make-docfile")
|
|
7 AC_SUBST(MODCFLAGS, "\$(CFLAGS) --mode=compile --mod-output=\$@ -I\$(MODARCHDIR)/include")
|
|
8 AC_SUBST(INSTALLPATH, "\$(shell @ELLCC@ --mod-site-location)")
|
|
9 AC_SUBST(MOD_INSTALL_PROGRAM, "@INSTALL_PROGRAM@")
|
|
10 AC_SUBST(OBJECT_TO_BUILD, "\$(MODNAME).ell")
|
|
11
|
|
12 AC_CONFIG_FILES([Makefile.in Makefile])
|
|
13 AC_OUTPUT
|