aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt328
1 files changed, 164 insertions, 164 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt
index 27086a3..b96d312 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt
+++ b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/jconfig.txt
@@ -1,164 +1,164 @@
1/* 1/*
2 * jconfig.txt 2 * jconfig.txt
3 * 3 *
4 * Copyright (C) 1991-1994, Thomas G. Lane. 4 * Copyright (C) 1991-1994, Thomas G. Lane.
5 * This file is part of the Independent JPEG Group's software. 5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file. 6 * For conditions of distribution and use, see the accompanying README file.
7 * 7 *
8 * This file documents the configuration options that are required to 8 * This file documents the configuration options that are required to
9 * customize the JPEG software for a particular system. 9 * customize the JPEG software for a particular system.
10 * 10 *
11 * The actual configuration options for a particular installation are stored 11 * The actual configuration options for a particular installation are stored
12 * in jconfig.h. On many machines, jconfig.h can be generated automatically 12 * in jconfig.h. On many machines, jconfig.h can be generated automatically
13 * or copied from one of the "canned" jconfig files that we supply. But if 13 * or copied from one of the "canned" jconfig files that we supply. But if
14 * you need to generate a jconfig.h file by hand, this file tells you how. 14 * you need to generate a jconfig.h file by hand, this file tells you how.
15 * 15 *
16 * DO NOT EDIT THIS FILE --- IT WON'T ACCOMPLISH ANYTHING. 16 * DO NOT EDIT THIS FILE --- IT WON'T ACCOMPLISH ANYTHING.
17 * EDIT A COPY NAMED JCONFIG.H. 17 * EDIT A COPY NAMED JCONFIG.H.
18 */ 18 */
19 19
20 20
21/* 21/*
22 * These symbols indicate the properties of your machine or compiler. 22 * These symbols indicate the properties of your machine or compiler.
23 * #define the symbol if yes, #undef it if no. 23 * #define the symbol if yes, #undef it if no.
24 */ 24 */
25 25
26/* Does your compiler support function prototypes? 26/* Does your compiler support function prototypes?
27 * (If not, you also need to use ansi2knr, see install.txt) 27 * (If not, you also need to use ansi2knr, see install.txt)
28 */ 28 */
29#define HAVE_PROTOTYPES 29#define HAVE_PROTOTYPES
30 30
31/* Does your compiler support the declaration "unsigned char" ? 31/* Does your compiler support the declaration "unsigned char" ?
32 * How about "unsigned short" ? 32 * How about "unsigned short" ?
33 */ 33 */
34#define HAVE_UNSIGNED_CHAR 34#define HAVE_UNSIGNED_CHAR
35#define HAVE_UNSIGNED_SHORT 35#define HAVE_UNSIGNED_SHORT
36 36
37/* Define "void" as "char" if your compiler doesn't know about type void. 37/* Define "void" as "char" if your compiler doesn't know about type void.
38 * NOTE: be sure to define void such that "void *" represents the most general 38 * NOTE: be sure to define void such that "void *" represents the most general
39 * pointer type, e.g., that returned by malloc(). 39 * pointer type, e.g., that returned by malloc().
40 */ 40 */
41/* #define void char */ 41/* #define void char */
42 42
43/* Define "const" as empty if your compiler doesn't know the "const" keyword. 43/* Define "const" as empty if your compiler doesn't know the "const" keyword.
44 */ 44 */
45/* #define const */ 45/* #define const */
46 46
47/* Define this if an ordinary "char" type is unsigned. 47/* Define this if an ordinary "char" type is unsigned.
48 * If you're not sure, leaving it undefined will work at some cost in speed. 48 * If you're not sure, leaving it undefined will work at some cost in speed.
49 * If you defined HAVE_UNSIGNED_CHAR then the speed difference is minimal. 49 * If you defined HAVE_UNSIGNED_CHAR then the speed difference is minimal.
50 */ 50 */
51#undef CHAR_IS_UNSIGNED 51#undef CHAR_IS_UNSIGNED
52 52
53/* Define this if your system has an ANSI-conforming <stddef.h> file. 53/* Define this if your system has an ANSI-conforming <stddef.h> file.
54 */ 54 */
55#define HAVE_STDDEF_H 55#define HAVE_STDDEF_H
56 56
57/* Define this if your system has an ANSI-conforming <stdlib.h> file. 57/* Define this if your system has an ANSI-conforming <stdlib.h> file.
58 */ 58 */
59#define HAVE_STDLIB_H 59#define HAVE_STDLIB_H
60 60
61/* Define this if your system does not have an ANSI/SysV <string.h>, 61/* Define this if your system does not have an ANSI/SysV <string.h>,
62 * but does have a BSD-style <strings.h>. 62 * but does have a BSD-style <strings.h>.
63 */ 63 */
64#undef NEED_BSD_STRINGS 64#undef NEED_BSD_STRINGS
65 65
66/* Define this if your system does not provide typedef size_t in any of the 66/* Define this if your system does not provide typedef size_t in any of the
67 * ANSI-standard places (stddef.h, stdlib.h, or stdio.h), but places it in 67 * ANSI-standard places (stddef.h, stdlib.h, or stdio.h), but places it in
68 * <sys/types.h> instead. 68 * <sys/types.h> instead.
69 */ 69 */
70#undef NEED_SYS_TYPES_H 70#undef NEED_SYS_TYPES_H
71 71
72/* For 80x86 machines, you need to define NEED_FAR_POINTERS, 72/* For 80x86 machines, you need to define NEED_FAR_POINTERS,
73 * unless you are using a large-data memory model or 80386 flat-memory mode. 73 * unless you are using a large-data memory model or 80386 flat-memory mode.
74 * On less brain-damaged CPUs this symbol must not be defined. 74 * On less brain-damaged CPUs this symbol must not be defined.
75 * (Defining this symbol causes large data structures to be referenced through 75 * (Defining this symbol causes large data structures to be referenced through
76 * "far" pointers and to be allocated with a special version of malloc.) 76 * "far" pointers and to be allocated with a special version of malloc.)
77 */ 77 */
78#undef NEED_FAR_POINTERS 78#undef NEED_FAR_POINTERS
79 79
80/* Define this if your linker needs global names to be unique in less 80/* Define this if your linker needs global names to be unique in less
81 * than the first 15 characters. 81 * than the first 15 characters.
82 */ 82 */
83#undef NEED_SHORT_EXTERNAL_NAMES 83#undef NEED_SHORT_EXTERNAL_NAMES
84 84
85/* Although a real ANSI C compiler can deal perfectly well with pointers to 85/* Although a real ANSI C compiler can deal perfectly well with pointers to
86 * unspecified structures (see "incomplete types" in the spec), a few pre-ANSI 86 * unspecified structures (see "incomplete types" in the spec), a few pre-ANSI
87 * and pseudo-ANSI compilers get confused. To keep one of these bozos happy, 87 * and pseudo-ANSI compilers get confused. To keep one of these bozos happy,
88 * define INCOMPLETE_TYPES_BROKEN. This is not recommended unless you 88 * define INCOMPLETE_TYPES_BROKEN. This is not recommended unless you
89 * actually get "missing structure definition" warnings or errors while 89 * actually get "missing structure definition" warnings or errors while
90 * compiling the JPEG code. 90 * compiling the JPEG code.
91 */ 91 */
92#undef INCOMPLETE_TYPES_BROKEN 92#undef INCOMPLETE_TYPES_BROKEN
93 93
94/* Define "boolean" as unsigned char, not int, on Windows systems. 94/* Define "boolean" as unsigned char, not int, on Windows systems.
95 */ 95 */
96#ifdef _WIN32 96#ifdef _WIN32
97#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */ 97#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
98typedef unsigned char boolean; 98typedef unsigned char boolean;
99#endif 99#endif
100#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */ 100#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
101#endif 101#endif
102 102
103 103
104/* 104/*
105 * The following options affect code selection within the JPEG library, 105 * The following options affect code selection within the JPEG library,
106 * but they don't need to be visible to applications using the library. 106 * but they don't need to be visible to applications using the library.
107 * To minimize application namespace pollution, the symbols won't be 107 * To minimize application namespace pollution, the symbols won't be
108 * defined unless JPEG_INTERNALS has been defined. 108 * defined unless JPEG_INTERNALS has been defined.
109 */ 109 */
110 110
111#ifdef JPEG_INTERNALS 111#ifdef JPEG_INTERNALS
112 112
113/* Define this if your compiler implements ">>" on signed values as a logical 113/* Define this if your compiler implements ">>" on signed values as a logical
114 * (unsigned) shift; leave it undefined if ">>" is a signed (arithmetic) shift, 114 * (unsigned) shift; leave it undefined if ">>" is a signed (arithmetic) shift,
115 * which is the normal and rational definition. 115 * which is the normal and rational definition.
116 */ 116 */
117#undef RIGHT_SHIFT_IS_UNSIGNED 117#undef RIGHT_SHIFT_IS_UNSIGNED
118 118
119 119
120#endif /* JPEG_INTERNALS */ 120#endif /* JPEG_INTERNALS */
121 121
122 122
123/* 123/*
124 * The remaining options do not affect the JPEG library proper, 124 * The remaining options do not affect the JPEG library proper,
125 * but only the sample applications cjpeg/djpeg (see cjpeg.c, djpeg.c). 125 * but only the sample applications cjpeg/djpeg (see cjpeg.c, djpeg.c).
126 * Other applications can ignore these. 126 * Other applications can ignore these.
127 */ 127 */
128 128
129#ifdef JPEG_CJPEG_DJPEG 129#ifdef JPEG_CJPEG_DJPEG
130 130
131/* These defines indicate which image (non-JPEG) file formats are allowed. */ 131/* These defines indicate which image (non-JPEG) file formats are allowed. */
132 132
133#define BMP_SUPPORTED /* BMP image file format */ 133#define BMP_SUPPORTED /* BMP image file format */
134#define GIF_SUPPORTED /* GIF image file format */ 134#define GIF_SUPPORTED /* GIF image file format */
135#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */ 135#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
136#undef RLE_SUPPORTED /* Utah RLE image file format */ 136#undef RLE_SUPPORTED /* Utah RLE image file format */
137#define TARGA_SUPPORTED /* Targa image file format */ 137#define TARGA_SUPPORTED /* Targa image file format */
138 138
139/* Define this if you want to name both input and output files on the command 139/* Define this if you want to name both input and output files on the command
140 * line, rather than using stdout and optionally stdin. You MUST do this if 140 * line, rather than using stdout and optionally stdin. You MUST do this if
141 * your system can't cope with binary I/O to stdin/stdout. See comments at 141 * your system can't cope with binary I/O to stdin/stdout. See comments at
142 * head of cjpeg.c or djpeg.c. 142 * head of cjpeg.c or djpeg.c.
143 */ 143 */
144#undef TWO_FILE_COMMANDLINE 144#undef TWO_FILE_COMMANDLINE
145 145
146/* Define this if your system needs explicit cleanup of temporary files. 146/* Define this if your system needs explicit cleanup of temporary files.
147 * This is crucial under MS-DOS, where the temporary "files" may be areas 147 * This is crucial under MS-DOS, where the temporary "files" may be areas
148 * of extended memory; on most other systems it's not as important. 148 * of extended memory; on most other systems it's not as important.
149 */ 149 */
150#undef NEED_SIGNAL_CATCHER 150#undef NEED_SIGNAL_CATCHER
151 151
152/* By default, we open image files with fopen(...,"rb") or fopen(...,"wb"). 152/* By default, we open image files with fopen(...,"rb") or fopen(...,"wb").
153 * This is necessary on systems that distinguish text files from binary files, 153 * This is necessary on systems that distinguish text files from binary files,
154 * and is harmless on most systems that don't. If you have one of the rare 154 * and is harmless on most systems that don't. If you have one of the rare
155 * systems that complains about the "b" spec, define this symbol. 155 * systems that complains about the "b" spec, define this symbol.
156 */ 156 */
157#undef DONT_USE_B_MODE 157#undef DONT_USE_B_MODE
158 158
159/* Define this if you want percent-done progress reports from cjpeg/djpeg. 159/* Define this if you want percent-done progress reports from cjpeg/djpeg.
160 */ 160 */
161#undef PROGRESS_REPORT 161#undef PROGRESS_REPORT
162 162
163 163
164#endif /* JPEG_CJPEG_DJPEG */ 164#endif /* JPEG_CJPEG_DJPEG */