Mercurial > hg > xemacs-beta
annotate modules/sample/external/configure.ac @ 4489:b75b075a9041
Support displaying invalid UTF-8 in language-environment-specific ways.
2008-08-05 Aidan Kehoe <kehoea@parhasard.net>
* specifier.el (current-display-table): Initialise this here, not
in x-init.el, since we want it even on non-X builds to use the
support for displaying Unicode error sequences according to the
current locale.
* mule/mule-cmds.el (set-language-info):
Document error-sequence-coding-system, used to describe how to
display characters that are not valid Unicode on disk.
* mule/mule-cmds.el (finish-set-language-environment):
Implement error-sequence-coding-system.
* unicode.el (unicode-error-sequence-warning-face):
New face, to make it possible to distinguish invalid Unicode
sequences from the characters given by the valid Unicode
sequences.
* mule/cyrillic.el ("Russian"):
("Ukrainian"):
("Bulgarian"):
("Belarusian"):
("Cyrillic-ALT"): Add support for error-sequence-coding-system for
all these languages.
* mule/latin.el:
Add support for error-sequence-coding-system for the
Latin-alphabet language environments.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 05 Aug 2008 09:06:41 +0200 |
parents | 25e260cb7994 |
children | dce479915b74 |
rev | line source |
---|---|
996 | 1 # Process this file with autoconf to produce a configure script. |
2 AC_INIT([Sample module], [1.0], [xemacs-beta@xemacs.org]) | |
3 AC_PREREQ(2.53) | |
4 AC_REVISION($Revision: 1.1 $) | |
5 AC_COPYRIGHT([Configuration script for the sample module. | |
6 Copyright (C) 2002 Jerry James. | |
7 | |
8 This file is not part of XEmacs.]) | |
9 | |
10 AC_CONFIG_SRCDIR([sample.c]) | |
11 AC_PROG_CC | |
12 AC_PROG_INSTALL | |
13 AC_SUBST(CFLAGS) | |
14 AC_SUBST(LDFLAGS) | |
15 | |
16 # Find ELLCC | |
17 AC_ARG_VAR([ELLCC], [The path to the ellcc module compiler]) | |
18 AC_PATH_PROG([ELLCC], [ellcc], ["FAIL"]) | |
19 AS_IF([test "$ELLCC" = "FAIL"], [AS_ERROR([Cannot find ellcc])]) | |
20 AC_SUBST(ELLCC) | |
21 | |
22 # Insert autoconf macros here to find the headers, libraries, other | |
23 # programs, etc. needed by your module. | |
24 | |
25 AC_CONFIG_FILES([Makefile.in Makefile]) | |
26 AC_OUTPUT |