1/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2 * filename: m-config.h.in                                                 *
3 *                                                                         *
4 * UTIL C-source: Medical Image Conversion Utility                         *
5 *                                                                         *
6 * purpose      : (X)MedCon template configuration header (configure)      *
7 *                                                                         *
8 * project      : (X)MedCon by Erik Nolf                                   *
9 *                                                                         *
10 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
11/*
12 */
13
14/*
15   Copyright (C) 1997-2021 by Erik Nolf
16
17   This program is free software; you can redistribute it and/or modify it
18   under the terms of the GNU General Public License as published by the
19   Free Software Foundation; either version 2, or (at your option) any later
20   version.
21
22   This program is distributed in the hope that it will be useful, but
23   WITHOUT ANY WARRANTY; without even the implied warranty of
24   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
25   Public License for more details.
26
27   You should have received a copy of the GNU General Public License along
28   with this program; if not, write to the Free Software Foundation, Inc.,
29   59 Place - Suite 330, Boston, MA 02111-1307, USA.  */
30
31#ifndef __M_CONFIG_H__
32#define __M_CONFIG_H__
33
34/* Define some version variables */
35#define XMEDCON_MAJOR    "@XMEDCON_MAJOR@"
36#define XMEDCON_MINOR    "@XMEDCON_MINOR@"
37#define XMEDCON_MICRO    "@XMEDCON_MICRO@"
38#define XMEDCON_PRGR     "@XMEDCON_PRGR@"
39#define XMEDCON_DATE     "@XMEDCON_DATE@"
40#define XMEDCON_VERSION  "@XMEDCON_VERSION@"
41#define XMEDCON_LIBVERS  "@XMEDCON_LIBVERS@"
42
43/* Define if format enabled */
44#define MDC_INCLUDE_ACR   @ENABLE_ACR@
45#define MDC_INCLUDE_GIF   @ENABLE_GIF@
46#define MDC_INCLUDE_INW   @ENABLE_INW@
47#define MDC_INCLUDE_ANLZ  @ENABLE_ANLZ@
48#define MDC_INCLUDE_CONC  @ENABLE_CONC@
49#define MDC_INCLUDE_ECAT  @ENABLE_ECAT@
50#define MDC_INCLUDE_INTF  @ENABLE_INTF@
51#define MDC_INCLUDE_DICM  @ENABLE_DICM@
52#define MDC_INCLUDE_PNG   @ENABLE_PNG@
53#define MDC_INCLUDE_NIFTI @ENABLE_NIFTI@
54#define MDC_INCLUDE_TPC   @ENABLE_TPC@    /* TPC ecat7 write */
55
56/* Define decompression program */
57#define MDC_DECOMPRESS  "@DECOMPRESS@"
58
59/* Define GLIB related stuff */
60#define GLIBSUPPORTED @GLIBSUPPORTED@
61
62/* Define XMedCon related stuff */
63#define GTKSUPPORTED @GTKSUPPORTED@
64#if GTKSUPPORTED
65#  define XMDCHELP "http://xmedcon.sourceforge.net"
66#  ifdef _WIN32
67#    define XMDCLUT  "C:\\Program Files\\XMedCon\\etc\\"
68#    define XMDCRC   "C:\\Program Files\\XMedCon\\etc\\xmedconrc"
69#  else
70#    define XMDCLUT  "@XMDCETC@/"
71#    define XMDCRC   "@XMDCETC@/xmedconrc"
72#  endif
73#endif
74
75#endif
76
77