annotate modules/common/configure-post.ac @ 5296:d185fa593d5f
last-version-with-netinstall
Specify ERROR_ME_WARN explicitly in specifier_instance_from_inst_list().
src/ChangeLog
2010-10-25 Aidan Kehoe <kehoea@parhasard.net>
* specifier.c (specifier_instance_from_inst_list):
Call call_with_suspended_errors() with ERROR_ME_WARN, explicitly;
avoids the problem Giacomo Boffi describes in
http://mid.gmane.org/19617.52517.341117.388679@aiuole.stru.polimi.it
, but the specifier instantiation bug that makes XEmacs fail for
him is still visible.
| author |
Aidan Kehoe <kehoea@parhasard.net> |
| date |
Mon, 25 Oct 2010 17:57:37 +0100 |
| 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
|