Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / libs / png / contrib / pngminim / encoder / pngusr.dfa
blob334d5e349198ec13dc9ce775597028796a505406
1 # pngminim/encoder/pngusr.dfa
3 # Copyright (c) 2010-2013 Glenn Randers-Pehrson
5 # This code is released under the libpng license.
6 # For conditions of distribution and use, see the disclaimer
7 # and license in png.h
9 # First all the build options off:
11 everything = off
13 # Switch on the write code - this makes a minimalist encoder
15 option WRITE on
16 # These 2 options are required if you need to read PGM (P1 or P4) PGM files.
17 # option WRITE_INVERT on
18 # option WRITE_PACK on
20 # You must choose fixed or floating point arithmetic:
21 # option FLOATING_POINT on
23 option FIXED_POINT on
25 # You must chose the internal fixed point implementation or to
26 # use the system floating point.  The latter is considerably
27 # smaller (by about 1kbyte on an x86 system):
28 # option FLOATING_ARITHMETIC on
30 option FLOATING_ARITHMETIC off
32 # Your program will probably need other options.  The example
33 # program here, pnm2pngm, requires the following.  Take a look
34 # at pnglibconf.h to find out the full set of what has to be
35 # enabled to make the following work.
37 option SETJMP on
38 option STDIO on