annotate lwlib/config.h.in @ 149:538048ae2ab8 r20-3b1

Import from CVS: tag r20-3b1
author cvs
date Mon, 13 Aug 2007 09:36:16 +0200
parents
children 6b37e6ddd302
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
1 /* XEmacs site configuration template file. -*- C -*-
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
2 Copyright (C) 1986, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
3
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
4 This file is part of XEmacs.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
5
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
9 later version.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
10
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
14 for more details.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
15
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
20
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
21 /* Not in FSF. */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
22
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
23 #ifndef _CONFIG_H_
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
24 #define _CONFIG_H_
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
25
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
26 /* alloca twiddling belongs in one place, not the s&m headers
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
27 AIX requires this to be the first thing in the file. */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
28 #undef HAVE_ALLOCA_H
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
29
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
30 #ifndef NOT_C_CODE
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
31 #ifdef __GNUC__
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
32 #undef alloca
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
33 #define alloca __builtin_alloca
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
34 #elif defined(_AIX)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
35 #pragma alloca
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
36 #elif HAVE_ALLOCA_H
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
37 #include <alloca.h>
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
38 #endif
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
39 #endif /* NOT C */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
40
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents:
diff changeset
41 #endif /* _CONFIG_H_ */