Mercurial > emacs
annotate etc/schema/xhtml-pres.rnc @ 108274:8416c8d075e3
Define LIB_STANDARD and START_FILES using autoconf.
* s/usg5-4.h (LIB_STANDARD):
* s/netbsd.h (START_FILES):
* s/irix6-5.h (LIB_STANDARD):
* s/hpux10-20.h (LIB_STANDARD, START_FILES):
* s/gnu-linux.h (START_FILES, LIB_STANDARD):
* s/freebsd.h (START_FILES):
* s/darwin.h (START_FILES):
* s/cygwin.h (START_FILES):
* s/aix4-2.h (LIB_STANDARD):
* m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
* Makefile.in (STARTFILES): Rename to START_FILES, define using
autoconf, not cpp.
Define START_FILES and LIB_STANDARD using autoconf.
* configure.in (START_FILES, LIB_STANDARD): New definitions, moved
here from src/s/*.h.
(HAVE_CRTIN): Remove, inline logic in the netbsd
START_FILES/LIB_STANDARD computation.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 06 May 2010 17:30:56 -0700 |
parents | 38f93f3d00a2 |
children |
rev | line source |
---|---|
86361 | 1 hr = element hr { hr.attlist } |
2 hr.attlist = Common.attrib | |
3 Block.class |= hr | |
4 b = element b { b.attlist, Inline.model } | |
5 b.attlist = Common.attrib | |
6 big = element big { big.attlist, Inline.model } | |
7 big.attlist = Common.attrib | |
8 i = element i { i.attlist, Inline.model } | |
9 i.attlist = Common.attrib | |
10 small = element small { small.attlist, Inline.model } | |
11 small.attlist = Common.attrib | |
12 sub = element sub { sub.attlist, Inline.model } | |
13 sub.attlist = Common.attrib | |
14 sup = element sup { sup.attlist, Inline.model } | |
15 sup.attlist = Common.attrib | |
16 tt = element tt { tt.attlist, Inline.model } | |
17 tt.attlist = Common.attrib | |
18 Inline.class |= b | big | i | small | sub | sup | tt |