/usr/include/gdcm-2.6/gdcmConfigure.h is in libgdcm2-dev 2.6.6-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | /*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef GDCMCONFIGURE_H
#define GDCMCONFIGURE_H
/* This header is configured by GDCM's build process. */
/*--------------------------------------------------------------------------*/
/* Platform Features */
/* Byte order. */
/* All compilers that support Mac OS X define either __BIG_ENDIAN__ or
__LITTLE_ENDIAN__ to match the endianness of the architecture being
compiled for. This is not necessarily the same as the architecture of the
machine doing the building. In order to support Universal Binaries on
Mac OS X, we prefer those defines to decide the endianness.
Elsewhere use the platform check result. */
#if !defined(__APPLE__)
/* #undef GDCM_WORDS_BIGENDIAN */
#elif defined(__BIG_ENDIAN__)
# define GDCM_WORDS_BIGENDIAN
#endif
/* Allow access to UINT32_MAX , cf gdcmCommon.h */
#define __STDC_LIMIT_MACROS
/* Hard code the path to the public dictionary */
#define PUB_DICT_PATH ""
/* Usefull in particular for loadshared where the full path
* to the lib is needed */
#define GDCM_SOURCE_DIR "/build/gdcm-amG7MP/gdcm-2.6.6"
#define GDCM_EXECUTABLE_OUTPUT_PATH "/build/gdcm-amG7MP/gdcm-2.6.6/obj-x86_64-linux-gnu/bin"
#define GDCM_LIBRARY_OUTPUT_PATH "/build/gdcm-amG7MP/gdcm-2.6.6/obj-x86_64-linux-gnu/bin"
/* #undef GDCM_BUILD_TESTING */
#define GDCM_USE_SYSTEM_ZLIB
#define GDCM_USE_SYSTEM_UUID
#define GDCM_USE_SYSTEM_POPPLER
#define GDCM_USE_SYSTEM_LIBXML2
#define GDCM_USE_SYSTEM_OPENSSL
/* #undef GDCM_USE_SYSTEM_MD5 */
#define GDCM_USE_SYSTEM_EXPAT
#define GDCM_USE_SYSTEM_JSON
/* #undef GDCM_USE_SYSTEM_LJPEG */
#define GDCM_USE_SYSTEM_OPENJPEG
/* #undef GDCM_USE_OPENJPEG_V2 */
#define GDCM_USE_SYSTEM_CHARLS
/* #undef GDCM_USE_SYSTEM_KAKADU */
#define GDCM_USE_SYSTEM_PVRG
#define GDCMV2_0_COMPATIBILITY
#define GDCM_USE_SYSTEM_PAPYRUS3
#ifndef GDCM_USE_SYSTEM_OPENJPEG
#ifdef GDCM_USE_OPENJPEG_V2
#define OPENJPEG_MAJOR_VERSION 2
#else // GDCM_USE_OPENJPEG_V2
#define OPENJPEG_MAJOR_VERSION 1
#endif // GDCM_USE_OPENJPEG_V2
#else
#define OPENJPEG_MAJOR_VERSION 2
#endif //GDCM_USE_SYSTEM_OPENJPEG
#ifndef OPENJPEG_MAJOR_VERSION
#error problem with openjpeg major version
#endif // OPENJPEG_MAJOR_VERSION
#define GDCM_USE_PVRG
/* #undef GDCM_USE_KAKADU */
#define GDCM_USE_JPEGLS
/* #undef GDCM_AUTOLOAD_GDCMJNI */
/* I guess something important */
#define GDCM_HAVE_STDINT_H
#define GDCM_HAVE_INTTYPES_H
/* This variable allows you to have helpful debug statement */
/* That are in between #ifdef / endif in the gdcm code */
/* That means if GDCM_DEBUG is OFF there shouldn't be any 'cout' at all ! */
/* only cerr, for instance 'invalid file' will be allowed */
/* #undef GDCM_DEBUG */
#define GDCM_CMAKE_INSTALL_PREFIX "/usr"
#define GDCM_INSTALL_INCLUDE_DIR "include/gdcm-2.6"
#define GDCM_INSTALL_DATA_DIR "share/gdcm-2.6"
/* Whether we are building shared libraries. */
#define GDCM_BUILD_SHARED_LIBS
/* GDCM uses __FUNCTION__ which is not ANSI C, but C99 */
#define GDCM_CXX_HAS_FUNCTION
/* Special time structure support */
#define GDCM_HAVE_SYS_TIME_H
/* #undef GDCM_HAVE_WINSOCK_H */
#define GDCM_HAVE_BYTESWAP_H
/* #undef GDCM_HAVE_RPC_H */
// CMS with PBE (added in OpenSSL 1.0.0 ~ Fri Nov 27 15:33:25 CET 2009)
#define GDCM_HAVE_CMS_RECIPIENT_PASSWORD
#define GDCM_HAVE_LANGINFO_H
#define GDCM_HAVE_NL_LANGINFO
#define GDCM_HAVE_STRCASECMP
#define GDCM_HAVE_STRNCASECMP
#define GDCM_HAVE_SNPRINTF
#define GDCM_HAVE_STRPTIME
/* #undef GDCM_HAVE__STRICMP */
/* #undef GDCM_HAVE__STRNICMP */
/* #undef GDCM_HAVE__SNPRINTF */
#define GDCM_HAVE_LROUND
#define GDCM_HAVE_GETTIMEOFDAY
#define GDCM_HAVE_JSON_OBJECT_OBJECT_GET_EX
// MM: I have a feeling that if GDCM_HAVE_WCHAR_IFSTREAM, then UNICODE filename
// are expected to be specified as UTF-16, but if no API exist for UTF-16
// at std::ifstream level, then const char* of std::ifstream might accept
// UTF-8
/* #undef GDCM_HAVE_WCHAR_IFSTREAM */
/* #undef GDCM_FORCE_BIGENDIAN_EMULATION */
#ifndef GDCM_OVERRIDE_BROKEN_IMPLEMENTATION
/* To Remove code that support broken DICOM implementation and therefore
* add some over head. Turn Off at your own risk
*/
#define GDCM_SUPPORT_BROKEN_IMPLEMENTATION
#endif
#ifndef gdcm_ns
#define gdcm_ns gdcm
#endif
#define GDCM_PVRG_JPEG_EXECUTABLE "/usr/bin/pvrg-jpeg"
#define GDCM_KAKADU_EXPAND_EXECUTABLE ""
/*--------------------------------------------------------------------------*/
/* GDCM Versioning */
/* Version number. */
#define GDCM_MAJOR_VERSION 2
#define GDCM_MINOR_VERSION 6
#define GDCM_BUILD_VERSION 6
#define GDCM_VERSION "2.6.6"
#define GDCM_API_VERSION "2.6"
/*
#define GDCM_FILE_META_INFORMATION_VERSION "\0\1"
// echo "gdcm" | od -b
#define GDCM_IMPLEMENTATION_CLASS_UID "107.104.103.115";
#define GDCM_IMPLEMENTATION_VERSION_NAME "GDCM " GDCM_VERSION
#define GDCM_SOURCE_APPLICATION_ENTITY_TITLE "GDCM"
*/
/*--------------------------------------------------------------------------*/
/* GDCM deprecation mechanism */
/* #undef GDCM_LEGACY_REMOVE */
/* #undef GDCM_LEGACY_SILENT */
/* #undef GDCM_ALWAYS_TRACE_MACRO */
#endif
|