annotate lib-src/ellcc.h.in @ 780:578cb2932d72
[xemacs-hg @ 2002-03-18 10:07:30 by ben]
config.inc.samp, xemacs.mak: Deal with never-ending perl quoting problems.
README: Include a long, long description of the suggested directory layout
for developing XEmacs. This should probably go as part of a
larger document, a "Getting Started with Developing XEmacs". ####
Does such a document exist?
etc\unicode\mule-ucs\*: New directory, containing translation
files for the remaining charsets that are not in
unicode\unicode-consortium but are in mule-ucs.
etc\unicode\other\*: New directory, containing translation
files made up on an ad-hoc basis.
etc\unicode\README: Update.
* Some ChangeLog entries from stuff that got applied long ago
never got checked in, due to the nasty SCCS "oops, i forgot again
..." bug.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan.
Load new file mule-msw-init-late.
unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages
extracted from mule-ucs.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan.
Load new file mule-msw-init-late.
unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages
extracted from mule-ucs.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
fns.c, lread.c: Add variable require-prints-loading-message to cause loading
messages to get printed when a file is loading during a `require',
which normally doesn't happen. This can be set using env var
XEMACSDEBUG to debug problems with non-interactive compilation.
Modify load-internal so it prints "Requiring: ..." instead of
"Loading: ..." when appropriate.
author |
ben |
date |
Mon, 18 Mar 2002 10:07:39 +0000 |
parents |
aabb7f5b1c81 |
children |
184461bc8de4 |
rev |
line source |
388
|
1 /* DO NOT EDIT THIS FILE!!!! */
|
|
2
|
|
3 /* Most of this is required due to a bug in the GCC compiler driver
|
|
4 which prevents us from passing this on the command line. It also
|
|
5 reduces the compiler command line length, which can be a problem
|
|
6 on some systems. */
|
|
7
|
|
8 #ifndef ELLCC_HDR
|
|
9 #define ELLCC_HDR
|
|
10
|
|
11 #define ELLCC_CC "@CC@"
|
|
12 #define ELLCC_CFLAGS "@CFLAGS@"
|
|
13 #define ELLCC_CPPFLAGS "@CPPFLAGS@"
|
|
14 #define ELLCC_LDFLAGS "@LDFLAGS@"
|
|
15 #define ELLCC_CF_GENERAL "@c_switch_general@"
|
|
16 #define ELLCC_CF_ALL "@c_switch_all@"
|
|
17 #define ELLCC_LF_GENERAL "@ld_switch_general@"
|
|
18 #define ELLCC_LF_ALL "@ld_switch_all@"
|
|
19 #define ELLCC_LIBS_GENERAL "@ld_libs_general@"
|
|
20 #define ELLCC_DLL_CFLAGS "@dll_cflags@"
|
|
21 #define ELLCC_DLL_LDFLAGS "@dll_ldflags@"
|
|
22 #define ELLCC_DLL_POST "@dll_post@"
|
|
23 #define ELLCC_DLL_LD "@dll_ld@"
|
|
24 #define ELLCC_DLL_LDO "@dll_ldo@"
|
|
25 #define ELLCC_CONFIG "@configuration@"
|
|
26 #define ELLCC_EMACS_VER "@version@"
|
|
27 #define ELLCC_PROGNAME "@PROGNAME@"
|
|
28 #define ELLCC_ARCHDIR "@ARCHLIBDIR@"
|
|
29 #define ELLCC_MODDIR "@MODULEDIR@"
|
|
30 #define ELLCC_SITEMODS "@SITEMODULEDIR@"
|
|
31
|
|
32 #endif /* ELLCC_HDR */
|
|
33
|