mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
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_ */
|