annotate src/m/README @ 836:8f668d99fea6

[xemacs-hg @ 2002-05-11 18:19:18 by adrian] [C21.5R21.4] [PATCH] xemacs-21.5: Add Q2.0.15 documenting EFS fails with 500 AUTH not understood -------------------- ChangeLog entries follow: -------------------- man/ChangeLog addition: 2002-05-11 Adrian Aichner <adrian@xemacs.org> * xemacs-faq.texi (Top): Add Q2.0.15 under "Installation and Trouble Shooting". * xemacs-faq.texi (Installation): Add Q2.0.15 to Installation menu. * xemacs-faq.texi (Q2.0.14): Fix unnumberedsubsec argument. * xemacs-faq.texi (Q2.0.15): New.
author adrian
date Sat, 11 May 2002 18:19:18 +0000
parents 3ecd8885ac67
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 This directory contains C header files containing machine-specific
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2 definitions. Each file describes a particular machine. The emacs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3 configuration script edits ../config.h to include the appropriate one of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4 these files, and then each emacs source file includes config.h.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
6 template.h is a generic template for machine descriptions; it
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7 describes the parameters a machine file can specify.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
8
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 General XEmacs Changes
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11 ----------------------
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
12 1. Removed all code dealing with VALBITS and XSET*. These are handled
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
13 differently in XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
14
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
15 2. Removed all defines of WORDS_BIGENDIAN. Now determined by configure.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
16
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
17 3. Put #ifndef PURESIZE around all PURESIZE defines so that it can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
18 overridden at configure time.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
19
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20 4. Removed all defines of NO_ARG_ARRAY. The arg-array hack is not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 done in XEmacs. (If you want to put it back, use configure --
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
22 autoconf has a check for this.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 5. Removed all defines of BITS_PER_INT, BITS_PER_LONG -- now
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
25 determined by configure.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
27 See ../s/README for a list of other changes made to the FSF 19.30
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
28 configuration files for XEmacs.