/usr/include/m-config.h is in libmdc2-dev 0.13.0-2.
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 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* filename: m-config.h.in *
* *
* UTIL C-source: Medical Image Conversion Utility *
* *
* purpose : (X)MedCon template configuration header (configure) *
* *
* project : (X)MedCon by Erik Nolf *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* $Id: m-config.h.in,v 1.25 2013/06/23 21:51:19 enlf Exp $
*/
/*
Copyright (C) 1997-2013 by Erik Nolf
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifndef __M_CONFIG_H__
#define __M_CONFIG_H__
/* Define some version variables */
#define XMEDCON_MAJOR "0"
#define XMEDCON_MINOR "13"
#define XMEDCON_MICRO "0"
#define XMEDCON_PRGR "(X)MedCon"
#define XMEDCON_DATE "23-jun-2013"
#define XMEDCON_VERSION "0.13.0"
#define XMEDCON_LIBVERS "(X)MedCon 0.13.0 by Erik Nolf"
/* Define if format enabled */
#define MDC_INCLUDE_ACR 1
#define MDC_INCLUDE_GIF 1
#define MDC_INCLUDE_INW 1
#define MDC_INCLUDE_ANLZ 1
#define MDC_INCLUDE_CONC 1
#define MDC_INCLUDE_ECAT 1
#define MDC_INCLUDE_INTF 1
#define MDC_INCLUDE_DICM 1
#define MDC_INCLUDE_PNG 1
#define MDC_INCLUDE_NIFTI 1
#define MDC_INCLUDE_TPC 1 /* TPC ecat7 write */
/* Define some machine dependencies */
#define MDC_WORDS_BIGENDIAN 0
#define MDC_SIZEOF_SHORT 2
#define MDC_SIZEOF_INT 4
#define MDC_SIZEOF_LONG 8
#define MDC_ENABLE_LONG_LONG 0
#if MDC_ENABLE_LONG_LONG
#define MDC_SIZEOF_LONG_LONG
#endif
/* Define decompression program */
#define MDC_DECOMPRESS "gunzip"
/* Define GLIB related stuff */
#define GLIBSUPPORTED 1
/* Define XMedCon related stuff */
#define GTKSUPPORTED 1
#if GTKSUPPORTED
# define XMDCHELP "http://xmedcon.sourceforge.net"
# ifdef _WIN32
# define XMDCLUT "C:\\Program Files\\XMedCon\\etc\\"
# define XMDCRC "C:\\Program Files\\XMedCon\\etc\\xmedconrc"
# else
# define XMDCLUT "/usr/etc/"
# define XMDCRC "/usr/etc/xmedconrc"
# endif
#endif
#endif
|