]> Creatis software - gdcm.git/blob - gdcmConfigure.h.in
STYLE: Fix some comment also rework the include stuff
[gdcm.git] / gdcmConfigure.h.in
1 #ifndef __gdcmConfigure_h
2 #define __gdcmConfigure_h
3
4 /* This header is configured by GDCM's build process.  */
5
6 /*--------------------------------------------------------------------------*/
7 /* Platform Features                                                        */
8
9 /* Byte order.  */
10 #cmakedefine GDCM_WORDS_BIGENDIAN
11
12 /* Allow access to UINT32_MAX , cf gdcmCommon.h */
13 #define __STDC_LIMIT_MACROS
14
15 /* Hard code the path to the public dictionary */
16 #define PUB_DICT_PATH "@GDCM_PUB_DICT_PATH@"
17
18 /* Hardcode the path to GDCM_DATA_ROOT */
19 #define GDCM_DATA_ROOT "@GDCM_DATA_ROOT@"
20
21 /* For older gcc / broken plateform */
22 #cmakedefine GDCM_NO_ANSI_STRING_STREAM
23
24 /* I guess something important */
25 #cmakedefine CMAKE_HAVE_STDINT_H
26
27 /* This variable allows you to have helpful debug statement */
28 /* That are in between #ifdef / endif in the gdcm code */
29 /* That means if GDCM_DEBUG is OFF there shouldn't be any 'cout' at all ! */
30 /* only cerr, for instance 'invalid file' will be allowed */
31 #cmakedefine GDCM_DEBUG
32
33 /* Whether we are building shared libraries.  */
34 /* This was important as long as GDCM is LGPL */
35 #cmakedefine BUILD_SHARED_LIBS
36
37 /* GDCM uses __FUNCTION__ which is not ANSI C, but C99 */
38 #cmakedefine GDCM_COMPILER_HAS_FUNCTION
39
40
41 /* GetMacAddress require a lot of include file to access low level API */
42 #cmakedefine CMAKE_HAVE_UNISTD_H
43 #cmakedefine CMAKE_HAVE_STDLIB_H
44 #cmakedefine CMAKE_HAVE_SYS_IOCTL_H
45 #cmakedefine CMAKE_HAVE_SYS_SOCKET_H
46 #cmakedefine CMAKE_HAVE_SYS_SOCKIO_H
47 #cmakedefine CMAKE_HAVE_NET_IF_H
48 #cmakedefine CMAKE_HAVE_NETINET_IN_H
49 #cmakedefine CMAKE_HAVE_NET_IF_DL_H
50 #cmakedefine CMAKE_HAVE_NET_IF_ARP_H
51
52
53 /*--------------------------------------------------------------------------*/
54 /* GDCM Versioning                                                          */
55
56 /* Version number.  */
57 #define GDCM_MAJOR_VERSION @GDCM_MAJOR_VERSION@
58 #define GDCM_MINOR_VERSION @GDCM_MINOR_VERSION@
59 #define GDCM_BUILD_VERSION @GDCM_BUILD_VERSION@
60 #define GDCM_VERSION "@GDCM_VERSION@"
61
62
63 #endif