1 #ifndef MSCGEN_CONFIG_H
2 #define MSCGEN_CONFIG_H
3 
4 #if defined(_WIN32) && !defined(__CYGWIN__)
5 #define M_PI   3.14159265358979323846264338327950288
6 #define strcasecmp _stricmp
7 #define strdup _strdup
8 #define fileno _fileno
9 #define YY_NO_UNISTD_H 1
10 #else
11 #define HAVE_UNISTD_H 1
12 #endif
13 
14 /* Define to 1 if you have the <limits.h> header file. */
15 #define HAVE_LIMITS_H 1
16 
17 /* Define to 1 if you have the <unistd.h> header file. */
18 
19 /* Name of package */
20 #define PACKAGE "mscgen"
21 
22 /* Define to the address where bug reports for this package should be sent. */
23 #define PACKAGE_BUGREPORT "Michael.McTernan.2001@cs.bris.ac.uk"
24 
25 /* Define to the full name of this package. */
26 #define PACKAGE_NAME "mscgen"
27 
28 /* Define to the full name and version of this package. */
29 #define PACKAGE_STRING "mscgen 0.20"
30 
31 /* Define to the one symbol short name of this package. */
32 #define PACKAGE_TARNAME "mscgen"
33 
34 /* Define to the home page for this package. */
35 #define PACKAGE_URL ""
36 
37 /* Define to the version of this package. */
38 #define PACKAGE_VERSION "0.20"
39 
40 /* If set, remove PNG output support thereby removing libgd dependence. */
41 //#define REMOVE_PNG_OUTPUT /**/
42 
43 /* Define to 1 if you have the ANSI C header files. */
44 //#define STDC_HEADERS 1
45 
46 /* Use FreeType for rendering text in PNGs. */
47 /* #undef USE_FREETYPE */
48 
49 /* Version number of package */
50 #define VERSION "0.20"
51 
52 /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
53    `char[]'. */
54 #define YYTEXT_POINTER 1
55 #endif /* MSCGEN_CONFIG_H */
56