mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
20 lines
448 B
C
20 lines
448 B
C
|
/**
|
||
|
* Private libpng configuration
|
||
|
*/
|
||
|
|
||
|
#ifndef _INCLUDE__LIBPNG__PNGUSR_H_
|
||
|
#define _INCLUDE__LIBPNG__PNGUSR_H_
|
||
|
|
||
|
//#define PNG_NO_READ_SUPPORTED
|
||
|
//#define PNG_NO_WRITE_SUPPORTED
|
||
|
#define PNG_NO_READ_tIME
|
||
|
#define PNG_NO_WRITE_tIME
|
||
|
#define PNG_NO_MNG_FEATURES
|
||
|
#define PNG_NO_STDIO
|
||
|
#define PNG_NO_SETJMP_SUPPORTED
|
||
|
#define PNG_NO_FLOATING_POINT_SUPPORTED
|
||
|
#define PNG_NO_READ_tIME
|
||
|
#define PNG_NO_ASSEMBLER_CODE
|
||
|
|
||
|
#endif /* _INCLUDE__LIBPNG__PNGUSR_H_ */
|