Mercurial > hg > xemacs-beta
comparison nt/config.inc.samp @ 442:abe6d1db359e r21-2-36
Import from CVS: tag r21-2-36
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:35:02 +0200 |
parents | |
children | 0784d089fdc9 |
comparison
equal
deleted
inserted
replaced
441:72a7cfa4a488 | 442:abe6d1db359e |
---|---|
1 # -*- mode: makefile -*- | |
2 | |
3 ############################################################################ | |
4 | |
5 INSTALL_DIR=c:\Program Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING) | |
6 | |
7 PACKAGE_PREFIX=c:\Program Files\XEmacs | |
8 | |
9 ############################################################################ | |
10 | |
11 # Multilingual support (not currently working). | |
12 HAVE_MULE=0 | |
13 | |
14 # Native MS Windows support. | |
15 HAVE_MS_WINDOWS=1 | |
16 | |
17 # X Windows support. | |
18 HAVE_X_WINDOWS=0 | |
19 X11_DIR= | |
20 | |
21 ############################################################################ | |
22 | |
23 # Set this to enable XPM support (virtually mandatory), and specify | |
24 # the directory containing xpm. | |
25 HAVE_XPM=1 | |
26 XPM_DIR=c:\src\xpm-3.4k | |
27 | |
28 # Set this to enable GIF support. | |
29 HAVE_GIF=1 | |
30 | |
31 # Set this to enable PNG support (virtually mandatory), and specify | |
32 # the directories containing png and zlib. | |
33 HAVE_PNG=1 | |
34 PNG_DIR=c:\src\libpng-1.0.5 | |
35 ZLIB_DIR=c:\src\zlib-1.1.3 | |
36 | |
37 # Set this to enable TIFF support, and specify the directory containing tiff. | |
38 HAVE_TIFF=0 | |
39 TIFF_DIR= | |
40 | |
41 # Set this to enable JPEG support, and specify the directory containing jpeg. | |
42 HAVE_JPEG=1 | |
43 JPEG_DIR=c:\src\jpeg-6b | |
44 | |
45 # Set this to enable XFace support, and specify the directory containing | |
46 # compface. | |
47 HAVE_XFACE=0 | |
48 COMPFACE_DIR= | |
49 | |
50 ############################################################################ | |
51 | |
52 # Set this to specify the location of makeinfo. (If not set, XEmacs will | |
53 # attempt to use its built-in texinfo support when building info files.) | |
54 MAKEINFO=f:\src\texinfo-4.0\makeinfo\makeinfo.exe | |
55 | |
56 ############################################################################ | |
57 | |
58 # Set this to enable some debug code that doesn't slow things down. | |
59 DEBUG_XEMACS=1 | |
60 | |
61 # Set this to speed up building, for development purposes. | |
62 QUICK_BUILD=0 | |
63 | |
64 # Set this to see exactly which compilation commands are being run (not | |
65 # generally recommended). | |
66 VERBOSECC=0 | |
67 | |
68 # Set this to get nmake to use dependency info (requires Perl to be installed) | |
69 DEPEND=0 | |
70 | |
71 ############################################################################ | |
72 | |
73 # Some technical options. | |
74 | |
75 USE_MINIMAL_TAGBITS=0 | |
76 USE_INDEXED_LRECORD_IMPLEMENTATION=0 | |
77 USE_PORTABLE_DUMPER=0 | |
78 GUNG_HO=0 |