]> git.saurik.com Git - apple/security.git/blob - SecuritySNACCRuntime/acconfig.h
Security-28.tar.gz
[apple/security.git] / SecuritySNACCRuntime / acconfig.h
1 /*
2 * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
3 *
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
8 * using this file.
9 *
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
16 */
17
18
19 /*
20 * file: acconfig.h
21 *
22 * $Header: /cvs/Darwin/Security/SecuritySNACCRuntime/acconfig.h,v 1.1.1.1 2001/05/18 23:14:04 mb Exp $
23 * $Log: acconfig.h,v $
24 * Revision 1.1.1.1 2001/05/18 23:14:04 mb
25 * Move from private repository to open source repository
26 *
27 * Revision 1.2 2001/05/05 00:59:16 rmurphy
28 * Adding darwin license headers
29 *
30 * Revision 1.1.1.1 1999/03/16 18:05:47 aram
31 * Originals from SMIME Free Library.
32 *
33 * Revision 1.7 1997/03/03 11:58:26 wan
34 * Final pre-delivery stuff (I hope).
35 *
36 * Revision 1.6 1997/02/28 13:39:34 wan
37 * Modifications collected for new version 1.3: Bug fixes, tk4.2.
38 *
39 * Revision 1.5 1997/02/15 20:01:37 rj
40 * check whether the compiler supports volatile functions (and whether abort() is volatile).
41 *
42 * Revision 1.4 1995/02/20 11:16:57 rj
43 * cpp switch HAVE_VARIABLE_SIZED_AUTOMATIC_ARRAYS added.
44 *
45 * Revision 1.3 1995/02/13 14:46:49 rj
46 * settings for IEEE_REAL_FMT/IEEE_REAL_LIB moved from {c_lib,c++_lib}/inc/asn_config.h to acconfig.h.
47 *
48 * Revision 1.2 1994/10/08 04:38:56 rj
49 * slot for autoconf Tcl detection added.
50 *
51 * Revision 1.1 1994/09/01 00:51:19 rj
52 * first check-in (new file).
53 *
54 */
55
56 /*
57 * define IEEE_REAL_FMT if your system/compiler uses the native ieee double
58 * this should improve the performance of encoding reals.
59 * If your system has the IEEE library routines (iszero, isinf etc)
60 * then define IEEE_REAL_LIB. If neither are defined then
61 * frexp is used. Performance is probaby best for IEEE_REAL_FMT.
62 *
63 * #define IEEE_REAL_FMT
64 * #define IEEE_REAL_LIB
65 */
66 /* use ANSI or K&R style C? */
67 #undef __USE_ANSI_C__
68
69 /* does the C++ compiler have the bool type built-in? */
70 #undef BOOL_BUILTIN
71
72 /* does the C++ compiler allow variable sized automatic arryas? */
73 #undef HAVE_VARIABLE_SIZED_AUTOMATIC_ARRAYS
74
75 /* do we have all the libs we need for the Tcl interface? */
76 #undef HAVE_TCL
77
78 /* does the compiler support volatile functions (and is abort() volatile?) */
79 #undef COMPILER_WITHOUT_VOLATILE_FUNCTIONS