Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7638 views
1
/* If you want to build the library manually without using
2
* 'configure' or 'CMake'
3
* then copy this file
4
* 'opj_config_private.h.cmake.in'
5
* to
6
* 'opj_config_private.h'
7
*
8
* Open 'opj_config_private.h' and change the file contents
9
* if you want to define something because you know you have
10
* BOTH installed the library AND the header file(s).
11
* Then e.g. write
12
#define HAVE_LIBPNG 1
13
*
14
*
15
* The file 'opj_config_private.h' will be included in some source files.
16
* ==== YOU CAN NOT COMPILE WITHOUT IT. ====
17
* === DO NOT FORGET TO CHANGE 'config.nix' APPROPRIATELY. ====
18
*/
19
20
#ifndef _WIN32
21
#define OPJ_HAVE_INTTYPES_H 1
22
#else
23
#undef OPJ_HAVE_INTTYPES_H
24
#endif
25
26
#define USE_JPIP
27
#define OPJ_PACKAGE_VERSION "2.0.0"
28
29
/* DO NOT DEFINE BOTH VERSIONS OF LCMS */
30
/* define to 1 if you have both liblcms and lcms.h installed */
31
#undef OPJ_HAVE_LIBLCMS1
32
/* #define OPJ_HAVE_LIBLCMS1 1 */
33
34
/* define to 1 if you have both liblcms2 and lcms2.h installed */
35
#undef OPJ_HAVE_LIBLCMS2
36
/* #define OPJ_HAVE_LIBLCMS2 1 */
37
38
/* define to 1 if you have both libpng and png.h installed */
39
#undef OPJ_HAVE_LIBPNG
40
/* #define OPJ_HAVE_LIBPNG 1 */
41
42
/* define to 1 if you have both libtiff and tiff.h installed */
43
#undef OPJ_HAVE_LIBTIFF
44
/* #define OPJ_HAVE_LIBTIFF 1 */
45
46
/*---------------- DO NOT CHANGE BELOW THIS LINE ----------------*/
47
#define PACKAGE_URL "http://www.openjpeg.org/"
48
#define PACKAGE_BUGREPORT "http://code.google.com/p/openjpeg/"
49
50