1 /*--------------------------------------------------------------------------
2   ----- File:        sysconf.h.in
3   ----- Author:      Rainer Menzner (rmz@neuroinformatik.ruhr-uni-bochum.de)
4   ----- Date:        02/24/1998
5   ----- Description: This file is part of the t1-library. Some system
6                      dependent definitions are stored here. sysconf.h
7 		     is generated from this file automatically by the
8 		     configure-script.
9   ----- Copyright:   t1lib is copyrighted (c) Rainer Menzner, 1996-1998.
10                      As of version 0.5, t1lib is distributed under the
11 		     GNU General Public Library Lincense. The
12 		     conditions can be found in the files LICENSE and
13 		     LGPL, which should reside in the toplevel
14 		     directory of the distribution.  Please note that
15 		     there are parts of t1lib that are subject to
16 		     other licenses:
17 		     The parseAFM-package is copyrighted by Adobe Systems
18 		     Inc.
19 		     The type1 rasterizer is copyrighted by IBM and the
20 		     X11-consortium.
21   ----- Warranties:  Of course, there's NO WARRANTY OF ANY KIND :-)
22   ----- Credits:     I want to thank IBM and the X11-consortium for making
23                      their rasterizer freely available.
24 		     Also thanks to Piet Tutelaers for his ps2pk, from
25 		     which I took the rasterizer sources in a format
26 		     independent from X11.
27                      Thanks to all people who make free software living!
28 --------------------------------------------------------------------------*/
29 
30 
31 #undef __CHAR_UNSIGNED__
32 #define SIZEOF_CHAR         1
33 #define SIZEOF_SHORT        2
34 #define SIZEOF_INT          4
35 #define SIZEOF_LONG         4
36 #define SIZEOF_LONG_LONG    8
37 #define SIZEOF_FLOAT        4
38 #define SIZEOF_DOUBLE       8
39 #define SIZEOF_LONG_DOUBLE  12
40 #define SIZEOF_VOID_P       4
41 
42 #if defined(_MSC_VER)
43 #  define T1LIB_IDENT			"1.0"
44 #  define GLOBAL_CONFIG_DIR	"/usr/local/share/t1lib-1.0"
45 #  define T1_AA_TYPE16		short
46 #  define T1_AA_TYPE32		int
47 #endif
48 
49 #if defined(_MSC_VER) && !defined(_WIN32)
50 # define _WIN32 1
51 #endif
52