/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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.18 2007/06/20 22:06:36 enlf Exp $ */ /* Copyright (C) 1997-2007 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 "@XMEDCON_MAJOR@" #define XMEDCON_MINOR "@XMEDCON_MINOR@" #define XMEDCON_MICRO "@XMEDCON_MICRO@" #define XMEDCON_PRGR "@XMEDCON_PRGR@" #define XMEDCON_DATE "@XMEDCON_DATE@" #define XMEDCON_VERSION "@XMEDCON_VERSION@" #define XMEDCON_LIBVERS "@XMEDCON_LIBVERS@" /* Define if format enabled */ #define MDC_INCLUDE_ACR @ENABLE_ACR@ #define MDC_INCLUDE_GIF @ENABLE_GIF@ #define MDC_INCLUDE_INW @ENABLE_INW@ #define MDC_INCLUDE_ANLZ @ENABLE_ANLZ@ #define MDC_INCLUDE_CONC @ENABLE_CONC@ #define MDC_INCLUDE_ECAT @ENABLE_ECAT@ #define MDC_INCLUDE_INTF @ENABLE_INTF@ #define MDC_INCLUDE_DICM @ENABLE_DICM@ #define MDC_INCLUDE_PNG @ENABLE_PNG@ #define MDC_INCLUDE_NIFTI @ENABLE_NIFTI@ #define MDC_INCLUDE_TPC @ENABLE_TPC@ /* TPC ecat7 write */ /* Define some machine dependencies */ #define MDC_WORDS_BIGENDIAN @mdc_cv_bigendian@ #define MDC_SIZEOF_SHORT @ac_cv_sizeof_short@ #define MDC_SIZEOF_INT @ac_cv_sizeof_int@ #define MDC_SIZEOF_LONG @ac_cv_sizeof_long@ #define MDC_ENABLE_LONG_LONG @mdc_cv_enable_lnglng@ #if MDC_ENABLE_LONG_LONG #define MDC_SIZEOF_LONG_LONG @ac_cv_sizeof_long_long@ #endif /* Define decompression program */ #define MDC_DECOMPRESS "@DECOMPRESS@" /* Define GLIB related stuff */ #define GLIBSUPPORTED @GLIBSUPPORTED@ /* Define XMedCon related stuff */ #define XSUPPORTED @XSUPPORTED@ #if XSUPPORTED # 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 "@XMDCETC@/" # define XMDCRC "@XMDCETC@/xmedconrc" # endif #endif #endif