xref: /plan9/sys/src/cmd/gs/src/ttconf.h (revision 593dc095aefb2a85c828727bbfa9da139a49bdf4)
1 /* Copyright (C) 2003 Aladdin Enterprises.  All rights reserved.
2 
3   This software is provided AS-IS with no warranty, either express or
4   implied.
5 
6   This software is distributed under license and may not be copied,
7   modified or distributed except as expressly authorized under the terms
8   of the license contained in the file LICENSE in this distribution.
9 
10   For more information about licensing, please refer to
11   http://www.ghostscript.com/licensing/. For information on
12   commercial licensing, go to http://www.artifex.com/licensing/ or
13   contact Artifex Software, Inc., 101 Lucas Valley Road #110,
14   San Rafael, CA  94903, U.S.A., +1(415)492-9861.
15 */
16 
17 /* $Id: ttconf.h,v 1.2 2003/11/13 22:41:41 igor Exp $ */
18 /* Configuration of the True Type interpreter. */
19 /* This file is copied from the FreeType project and modified to satisfy Ghostscript needs. */
20 
21 #ifndef TTCONF_H
22 #define TTCONF_H
23 
24 /* Define to empty if the keyword does not work.  */
25 #undef const
26 
27 /* Define if you have a working `mmap' system call.  */
28 #undef HAVE_MMAP
29 
30 /* Define if you have the ANSI C header files.  */
31 #undef STDC_HEADERS
32 
33 /* Define if your processor stores words with the most significant
34    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
35 #define WORDS_BIGENDIAN ARCH_IS_BIG_ENDIAN
36 
37 /* Define if you have the getpagesize function.  */
38 #undef HAVE_GETPAGESIZE
39 
40 /* Define if you have the memcpy function.  */
41 #define HAVE_MEMCPY
42 
43 /* Define if you have the valloc function.  */
44 #undef HAVE_VALLOC
45 
46 /* Define if you have the <fcntl.h> header file.  */
47 #undef HAVE_FCNTL_H
48 
49 /* Define if you have the <unistd.h> header file.  */
50 #undef HAVE_UNISTD_H
51 
52 /* Define if you have the <getopt.h> header file.  */
53 #undef HAVE_GETOPT_H
54 
55 /* Define if you need <conio.h> for console I/O functions.  */
56 #undef HAVE_CONIO_H
57 
58 /* command.com can't pipe stderr into a file; any message would be */
59 /* written into the graphics screen.                               */
60 #undef HAVE_PRINT_FUNCTION
61 
62 /* The number of bytes in a int. */
63 #define SIZEOF_INT  (1 << ARCH_LOG2_SIZEOF_INT)
64 
65 /* The number of bytes in a long.  */
66 #define SIZEOF_LONG (1 << ARCH_LOG2_SIZEOF_LONG)
67 
68 /* Define if you have the basename function.  */
69 #undef HAVE_BASENAME
70 
71 
72 /* End of ft_conf.h */
73 
74 #endif /* TTCONF_H */
75