]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libpng/lib/dist/scripts/pnglibconf.dfa
update
[l4.git] / l4 / pkg / libpng / lib / dist / scripts / pnglibconf.dfa
1 # scripts/pnglibconf.dfa - library build configuration control
2 #
3 @/*- pnglibconf.dfn intermediate file
4 @ *  generated from scripts/pnglibconf.dfa
5 @ */
6 #
7 com pnglibconf.h - library build configuration
8 com
9 com libpng version 1.5.0 - January 6, 2011
10 com
11 com Copyright (c) 1998-2011 Glenn Randers-Pehrson
12 com
13 com This code is released under the libpng license.
14 com For conditions of distribution and use, see the disclaimer
15 com and license in png.h
16 com
17
18 file pnglibconf.h scripts/pnglibconf.dfa PNGLCONF_H
19
20 # This file is preprocessed by scripts/options.awk and the
21 # C compiler to generate 'pnglibconf.h' - a list of all the
22 # configuration options.  The file lists the various options
23 # that can *only* be specified during the libpng build;
24 # pnglibconf.h freezes the definitons selected for the specific
25 # build.
26 #
27 # The syntax is detailed in scripts/options.awk, this is a summary
28 # only:
29 #
30 # setting <name> [requires ...] [default]
31 #    #define PNG_<name> <value>  /* value comes from current setting */
32 # option <name> [requires ...] [if ...] [enables ...] [disabled]
33 #    #define PNG_<name>_SUPPORTED if the requirements are met and
34 #    enable the other options listed
35 # chunk <name> [requires ...] [disabled]
36 #    Enable chunk processing for the given ancillary chunk
37 #
38 # Note that the 'on' and 'off' keywords, while valid on both option
39 # and chunk, should not be used in this file because they force the
40 # relevant options on or off.
41
42 #----------------------------------------------------------------------
43
44 # The following setting, option and chunk values can all be changed
45 # while building libpng:
46
47 # setting: change 'setting' lines to fine tune library performance,
48 #   changes to the settings don't affect the libpng API functionally
49 #
50 # option: change 'option' lines to remove or add capabilities from
51 #   or to the library; options change the library API
52 #
53 # chunk: change 'chunk' lines to remove capabilities to process
54 #   optional ('ancillary') chunks.  This does not prevent PNG
55 #   decoding but does change the libpng API because some chunks
56 #   will be ignored.
57 #
58 # There are three ways of disabling features, in no particular order:
59 #
60 # 1) Create 'pngusr.h', enter the required private build information
61 # detailed below and #define PNG_NO_<option> for each option you
62 # don't want in that file in that file.  You can also turn on options
63 # using PNG_<option>_SUPPORTED.  When you have finished rerun
64 # configure and rebuild pnglibconf.h file with -DPNG_USER_CONFIG:
65
66 #  make clean
67 #  CPPFLAGS='-DPNG_USER_CONFIG' ./configure
68 #  make pnglibconf.h
69 #
70 # pngusr.h is only used during the creation of pnglibconf.h, but it
71 # is safer to ensure that -DPNG_USER_CONFIG is specified throughout
72 # the build by changing the CPPFLAGS passed to the initial ./configure
73 #
74 # 2) Add definitions of the settings you want to change to
75 # CPPFLAGS; for example:
76
77 #   -DPNG_DEFAULT_READ_MACROS=0
78 #
79 # (This would change the default to *not* use read macros.)  Be
80 # very careful to change only settings that don't alter the API
81 # because this approach bypasses the private build checking.  You
82 # can also change settings from pngpriv.h (read pngpriv.h) safely
83 # without API changes.  Do that in the same way.
84 #
85 # 3) Write a new '.dfa' file (say 'pngusr.dfa') and in this file
86 # provide override values for setting entries and turn option or
87 # chunk values explicitly 'on' or 'off':
88 #
89 #    setting FOO default VALUE
90 #    option BAR [on|off]
91 #
92 # Then add this file to the options.awk command line (the *first*
93 # one) after this file.  The make macro DFA_XTRA is provided to make
94 # this easier (set it like CPPFLAGS prior to running ./configure).
95 # Look at the builds below contrib/pngminim for some extreme examples
96 # of how this can be used.
97 #
98 # Don't edit this file unless you are contributing a patch to
99 # libpng and need new or modified options/settings.
100 #----------------------------------------------------------------------
101
102 # The following causes commented out #undef lines to be written to
103 # pnglibconf.h; this can be stopped by logunsupported=0 in a later
104 # file or on the command line (after pnglibconf.dfa)
105
106 logunsupported = 1
107
108 # PNG_USER_CONFIG has to be defined on the compiler command line
109 # to cause pngusr.h to be read while constructing pnglibconf.h
110 #
111 # If you create a private DLL you need to define the following
112 # macros in the file 'pngusr.h' and set -DPNG_USER_CONFIG for
113 # compilation (i.e. in CFLAGS.)
114 # #define PNG_USER_PRIVATEBUILD \
115 #     <Describes by whom and why this version of the DLL was built>
116 #  e.g. #define PNG_USER_PRIVATEBUILD "Build by MyCompany for xyz reasons."
117 # #define PNG_USER_DLLFNAME_POSTFIX <two-letter postfix that serve to
118 #        distinguish your DLL from those of the official release. These
119 #        correspond to the trailing letters that come after the version
120 #        number and must match your private DLL name>
121 #  e.g. // private DLL "libpng13gx.dll"
122 #       #define PNG_USER_DLLFNAME_POSTFIX "gx"
123 #
124 # The following macros are also at your disposal if you want to complete the
125 # DLL VERSIONINFO structure.
126 # - PNG_USER_VERSIONINFO_COMMENTS
127 # - PNG_USER_VERSIONINFO_COMPANYNAME
128 # - PNG_USER_VERSIONINFO_LEGALTRADEMARKS
129
130 @#ifdef PNG_USER_CONFIG
131 @#  include "pngusr.h"
132 @#endif
133
134 # This is a special fixup for the Watcom C compiler on Windows, which has
135 # multiple procedure call standards.  Unless PNG_API_RULE is set explicitly
136 # (i.e. if it is not defined at this point) it will be forced to '2' here when
137 # using Watcom.  This indicates to the other header files that Watcom behaviour
138 # is required where appropriate.
139
140 @#ifdef __WATCOMC__
141 @#  ifndef PNG_API_RULE
142 @#     define PNG_API_RULE 2 /* Use Watcom calling conventions */
143 @#  endif
144 @#endif
145
146 # Note that PNG_USR_CONFIG only has an effect when building
147 # pnglibconf.h
148
149 setting USER_CONFIG
150 setting USER_PRIVATEBUILD
151 setting USER_DLLFNAME_POSTFIX
152 setting USER_VERSIONINFO_COMMENTS
153 setting USER_VERSIONINFO_COMPANYNAME
154 setting USER_VERSIONINFO_LEGALTRADEMARKS
155
156 # Record the 'API rule' used to select calling conventions on
157 # those systems that support such things (see all the comments in
158 # pngconf.h)
159 # Changing this setting has a fundamental affect on the PNG ABI,
160 # do not release shared libraries with this changed.
161
162 setting API_RULE default 0
163
164 # Default to using the read macros
165
166 setting DEFAULT_READ_MACROS default 1
167
168 # The alternative is to call functions to read PNG values, if
169 # the functions are turned *off* the read macros must always
170 # be enabled, so turning this off will actually force the
171 # USE_READ_MACROS option on (see pngconf.h)
172
173 option READ_INT_FUNCTIONS requires READ
174
175 # The same for write, but these can only be switched off if
176 # no writing is required at all - hence the use of an 'enables'
177 # not a 'requires' below:
178
179 option WRITE_INT_FUNCTIONS disabled
180 option WRITE enables WRITE_INT_FUNCTIONS
181
182 # Generic options - affect both read and write.
183
184 option WARNINGS
185 option BENIGN_ERRORS
186 option MNG_FEATURES
187
188 # Arithmetic options, the first is the big switch that chooses between internal
189 # floating and fixed point arithmetic implementations - it does not affect any
190 # APIs.  The second two (the _POINT settings) switch off individual APIs.
191
192 option FLOATING_ARITHMETIC
193 option FLOATING_POINT enables ok_math
194 option FIXED_POINT enables ok_math
195
196 # Added at libpng version 1.4.0 
197
198 option ERROR_TEXT
199
200 # The following is always on (defined empty) 
201
202 setting CALLOC_SUPPORTED default
203
204 # This protects us against compilers that run on a windowing system
205 # and thus don't have or would rather us not use the stdio types:
206 # stdin, stdout, and stderr.  The only one currently used is stderr
207 # in png_error() and png_warning().  #defining PNG_NO_CONSOLE_IO will
208 # prevent these from being compiled and used. #defining PNG_NO_STDIO
209 # will also prevent these, plus will prevent the entire set of stdio
210 # macros and functions (FILE *, printf, etc.) from being compiled and used,
211 # unless (PNG_DEBUG > 0) has been #defined.
212
213 option STDIO
214 option CONSOLE_IO requires STDIO
215
216 # Note: prior to 1.5.0 this option could not be disabled if STDIO
217 # was enabled.
218
219 option TIME_RFC1123 requires STDIO
220
221 # PNG_SETJMP_NOT_SUPPORTED is an old equivalent for NO_SETJMP
222
223 option SETJMP
224 = NO_SETJMP SETJMP_NOT_SUPPORTED
225
226 # For the moment this is disabled (no code support):
227
228 option ERROR_NUMBERS disabled
229
230 # If this is disabled it is not possible for apps to get the
231 # values from the 'info' structure, this effectively removes
232 # quite a lot of the READ API.
233
234 option EASY_ACCESS
235
236 # Added at libpng-1.2.0
237
238 option USER_MEM
239
240 # Added at libpng-1.4.0
241
242 option IO_STATE
243
244 # This is only for PowerPC big-endian and 680x0 systems
245 # some testing, not enabled by default.
246 # NO LONGER USED
247
248 #option READ_BIG_ENDIAN disabled
249
250 # Allow users to control limits on what the READ code will
251 # read:
252
253 # Added at libpng-1.2.43; adds limit fields to png_struct,
254 # allows some usages of these fields
255
256 option USER_LIMITS
257
258 # Added at libpng-1.2.6; adds setting APIs, allows additional
259 # usage of this field (UTSL)
260
261 option SET_USER_LIMITS requires USER_LIMITS
262
263 # Feature added at libpng-1.4.0, this flag added at 1.4.1
264 option SET_USER_LIMITS enables SET_CHUNK_CACHE_LIMIT
265 # Feature added at libpng-1.4.1, this flag added at 1.4.1
266
267 option SET_USER_LIMITS enables SET_CHUNK_MALLOC_LIMIT
268
269 # Added at libpng-1.0.16 and 1.2.6.  To accept all valid PNGs no matter
270 # how large, set these two limits to 0x7fffffffL
271
272 setting USER_WIDTH_MAX default 1000000L
273 setting USER_HEIGHT_MAX default 1000000L
274
275 # Added at libpng-1.2.43.  To accept all valid PNGs no matter
276 # how large, set these two limits to 0.
277
278 setting USER_CHUNK_CACHE_MAX default 0
279
280 # Added at libpng-1.2.43
281
282 setting USER_CHUNK_MALLOC_MAX default 0
283
284 # All of the following options relate to code capabilities for
285 # processing image data before creating a PNG or after reading one.
286 # You can remove these capabilities safely and still be PNG
287 # conformant, however the library that results is still non-standard.
288 # See the comments above about how to change options and settings.
289
290 # READ options
291
292 option READ enables READ_INTERLACING
293
294 # Disabling READ_16BIT does not disable reading 16-bit PNG files, but it
295 # forces them to be chopped down to 8-bit, and disables any 16-bit
296 # processing after that has happened.  You need to be sure to enable READ_16_TO_8
297 # when you disable READ_16BIT for this to work properly.
298
299 option READ_16BIT requires READ enables 16BIT
300
301 option READ_QUANTIZE requires READ
302
303 option READ_TRANSFORMS requires READ
304 = NO_READ_TRANSFORMS READ_TRANSFORMS_NOT_SUPPORTED
305
306 option READ_EXPAND requires READ_TRANSFORMS
307 option READ_EXPAND_16 requires READ_TRANSFORMS READ_16BIT enables READ_EXPAND
308 option READ_SHIFT requires READ_TRANSFORMS
309 option READ_PACK requires READ_TRANSFORMS
310 option READ_BGR requires READ_TRANSFORMS
311 option READ_SWAP requires READ_TRANSFORMS READ_16BIT
312 option READ_PACKSWAP requires READ_TRANSFORMS
313 option READ_INVERT requires READ_TRANSFORMS
314 option READ_BACKGROUND requires READ_TRANSFORMS
315 option READ_16_TO_8 requires READ_TRANSFORMS
316 option READ_FILLER requires READ_TRANSFORMS
317 option READ_GAMMA requires READ_TRANSFORMS enables READ_gAMA
318 option READ_GRAY_TO_RGB requires READ_TRANSFORMS
319 option READ_SWAP_ALPHA requires READ_TRANSFORMS
320 option READ_INVERT_ALPHA requires READ_TRANSFORMS
321 option READ_STRIP_ALPHA requires READ_TRANSFORMS
322 option READ_USER_TRANSFORM requires READ_TRANSFORMS
323 option READ_RGB_TO_GRAY requires READ_TRANSFORMS
324
325 option PROGRESSIVE_READ requires READ
326 option SEQUENTIAL_READ requires READ
327
328 # You can define PNG_NO_PROGRESSIVE_READ if you don't do progressive reading.
329 # This is not talking about interlacing capability!  You'll still have
330 # interlacing unless you turn off the following which is required
331 # for PNG-compliant decoders.  (In other words, do not do this - in
332 # fact it can't be disabled from the command line!)
333 #option READ_INTERLACING requires READ
334
335 option READ_COMPOSITE_NODIV requires READ
336 = NO_READ_COMPOSITE_NODIV NO_READ_COMPOSITED_NODIV
337
338 # Inch conversions
339
340 option INCH_CONVERSIONS
341 = INCH_CONVERSIONS INCH_CONVERSIONS
342
343 # IN DEVELOPMENT
344 # These are currently experimental features, define them if you want
345
346 # Very little testing, not enabled by default.
347
348 option READ_16_TO_8_ACCURATE_SCALE requires READ disabled
349
350 # WRITE options
351
352 option WRITE
353
354 # Disabling WRITE_16BIT prevents 16-bit PNG files from being
355 # generated.
356 option WRITE_16BIT requires WRITE enables 16BIT
357
358 option WRITE_TRANSFORMS requires WRITE
359 = NO_WRITE_TRANSFORMS WRITE_TRANSFORMS_NOT_SUPPORTED
360
361 option WRITE_SHIFT requires WRITE_TRANSFORMS
362 option WRITE_PACK requires WRITE_TRANSFORMS
363 option WRITE_BGR requires WRITE_TRANSFORMS
364 option WRITE_SWAP requires WRITE_TRANSFORMS WRITE_16BIT
365 option WRITE_PACKSWAP requires WRITE_TRANSFORMS
366 option WRITE_INVERT requires WRITE_TRANSFORMS
367 option WRITE_FILLER requires WRITE_TRANSFORMS
368 option WRITE_SWAP_ALPHA requires WRITE_TRANSFORMS
369 option WRITE_INVERT_ALPHA requires WRITE_TRANSFORMS
370 option WRITE_USER_TRANSFORM requires WRITE_TRANSFORMS
371
372 # This is not required for PNG-compliant encoders, but can cause
373 # trouble if left undefined
374
375 option WRITE_INTERLACING requires WRITE
376
377 # The following depends, internally, on WEIGHT_SHIFT and COST_SHIFT
378 # where are set below.
379
380 option WRITE_WEIGHTED_FILTER requires WRITE
381
382 option WRITE_FLUSH requires WRITE
383
384 # Note: these can be turned off explicitly if not required by the
385 # apps implementing the user transforms
386 option USER_TRANSFORM_PTR if READ_USER_TRANSFORM WRITE_USER_TRANSFORM
387 option USER_TRANSFORM_INFO if READ_USER_TRANSFORM WRITE_USER_TRANSFORM
388
389 # Any chunks you are not interested in, you can undef here.  The
390 # ones that allocate memory may be expecially important (hIST,
391 # tEXt, zTXt, tRNS, pCAL).  Others will just save time and make png_info
392 # a bit smaller.
393
394 # The size of the png_text structure changed in libpng-1.0.6 when
395 # iTXt support was added.  iTXt support was turned off by default through
396 # libpng-1.2.x, to support old apps that malloc the png_text structure
397 # instead of calling png_set_text() and letting libpng malloc it.  It
398 # was turned on by default in libpng-1.4.0.
399
400 option READ_ANCILLARY_CHUNKS requires READ
401 # PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED is deprecated.
402 = NO_READ_ANCILLARY_CHUNKS READ_ANCILLARY_CHUNKS_NOT_SUPPORTED
403
404 option WRITE_ANCILLARY_CHUNKS requires WRITE
405 # PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED is deprecated.
406 = NO_WRITE_ANCILLARY_CHUNKS WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED
407
408 # These options disable *all* the text chunks if turned off
409
410 option READ_TEXT requires READ_ANCILLARY_CHUNKS enables TEXT
411 option WRITE_TEXT requires WRITE_ANCILLARY_CHUNKS enables TEXT
412
413 # Moved to pnglibconf.h at libpng-1.5.0
414 # Feature support: in 1.4 this was in pngconf.h, but the following
415 # features have no affect on the libpng API.  Add library
416 # only features to the end of this list.  Add features that
417 # affect the API above.  (Note: the list of chunks follows
418 # the library-only settings.)
419 #
420 # BUILD TIME ONLY OPTIONS
421 #   These options do not affect the API but rather alter how the
422 #   API is implemented, they get recorded in pnglibconf.h, but
423 #   can't be changed by the application.
424
425 # Check the correctness of cHRM chunks
426
427 option CHECK_cHRM requires cHRM
428
429 #
430 # Artificially align memory - the code typically aligns to 8 byte
431 # boundaries if this is switched on, it's a small waste of space
432 # but can help (in theory) on some architectures.  Only affects
433 # internal structures.  Added at libpng 1.4.0
434
435 option ALIGN_MEMORY
436
437 # Buggy compilers (e.g., gcc 2.7.2.2) need PNG_NO_POINTER_INDEXING
438 # See png[wr]util.c, normally this should always be *on*
439
440 option POINTER_INDEXING
441
442 # Other defines for things like memory and the like can go here.
443
444 # BUILD TIME SETTINGS
445 # Like build time options these do not affect the API, but they
446 # may be useful to applications because they record details of
447 # how the API will behave particularly with regard to overall
448 # accuracy.
449
450 # This controls how fine the quantizing gets.  As this allocates
451 # a largish chunk of memory (32K), those who are not as concerned
452 # with quantizing quality can decrease some or all of these.
453
454 setting QUANTIZE_RED_BITS default 5
455 setting QUANTIZE_GREEN_BITS default 5
456 setting QUANTIZE_BLUE_BITS default 5
457
458 # This controls how fine the gamma correction becomes when you
459 # are only interested in 8 bits anyway.  Increasing this value
460 # results in more memory being used, and more pow() functions
461 # being called to fill in the gamma tables.  Don't set this value
462 # less then 8, and even that may not work (I haven't tested it).
463
464 setting MAX_GAMMA_8 default 11
465
466 # This controls how much a difference in gamma we can tolerate before
467 # we actually start doing gamma conversion, it's a fixed point value,
468 # so the default below is 0.05, meaning libpng ignores corrections in
469 # the range 0.95 to 1.05
470
471 setting GAMMA_THRESHOLD_FIXED default 5000
472
473 # Scaling factor for filter heuristic weighting calculations
474
475 setting WEIGHT_SHIFT default 8
476 setting COST_SHIFT default 3
477
478 # Precision to use when converting a floating point value to a PNG
479 # extension format string in an sCAL chunk (only relevant if the
480 # floating point API is enabled)
481
482 setting sCAL_PRECISION default 5
483
484 # This is the size of the compression buffer, and thus the size of
485 # an IDAT chunk.  Make this whatever size you feel is best for your
486 # machine.  One of these will be allocated per png_struct.  When this
487 # is full, it writes the data to the disk, and does some other
488 # calculations.  Making this an extremely small size may slow
489 # the library down, but you may want to experiment to determine
490 # where it becomes significant, if you are concerned with memory
491 # usage.  Note that zlib allocates at least 32Kb also.  For readers,
492 # this describes the size of the buffer available to read the data in.
493 # Unless this gets smaller than the size of a row (compressed),
494 # it should not make much difference how big this is.
495
496 setting ZBUF_SIZE default 8192
497
498 # Ancillary chunks
499 chunk bKGD
500 chunk cHRM
501 chunk gAMA
502 chunk hIST
503 chunk iCCP
504 chunk iTXt requires TEXT
505 chunk oFFs
506 chunk pCAL
507 chunk sCAL
508 chunk pHYs
509 chunk sBIT
510 chunk sPLT
511 chunk sRGB
512 chunk tEXt requires TEXT
513 chunk tIME
514 chunk tRNS
515 chunk zTXt requires TEXT
516
517 # This only affects support of the optional PLTE chunk in RGB and RGBA
518 # images.  Notice that READ_ANCILLARY_CHUNKS therefore disables part
519 # of the regular chunk reading too.
520
521 option READ_OPT_PLTE requires READ_ANCILLARY_CHUNKS
522
523 option READ_UNKNOWN_CHUNKS requires READ
524 option READ_UNKNOWN_CHUNKS enables UNKNOWN_CHUNKS READ_USER_CHUNKS
525 option READ_USER_CHUNKS requires READ enables USER_CHUNKS
526
527 option CONVERT_tIME requires WRITE_ANCILLARY_CHUNKS
528 # The "tm" structure is not supported on WindowsCE
529
530 @#ifdef _WIN32_WCE
531 @#   define PNG_NO_CONVERT_tIME
532 @#endif
533
534 option WRITE_FILTER requires WRITE
535
536 option WRITE_UNKNOWN_CHUNKS requires WRITE
537
538 option HANDLE_AS_UNKNOWN
539
540 option SAVE_INT_32 requires WRITE
541
542 # png_save_int_32 is required by the ancillary chunks oFFs and pCAL
543
544 option WRITE_oFFs enables SAVE_INT_32
545 option WRITE_pCAL enables SAVE_INT_32
546
547 # Turn this off to disable png_read_png() and png_write_png() and
548 # leave the row_pointers member out of the info structure.
549
550 option INFO_IMAGE