/**************************************************************/
/**  C++ code Copyright (C) Nick V. King <nking@eworld.com>  **/
/**************************************************************/

// MIDAS configuration file -- Mac version

#ifndef CONFIGH
#define CONFIGH

// choose the platform on which we are compiling
#undef SUN
#undef MSDOS
#define MAC

// choose the possible execution modes -- screens first
#undef SUNVIEW
#undef IBMVGA
#define MACSCREEN

// hardcopy devices
#undef LASERWRITER
#undef LASERJET

// select whether a batch mode is possible
#undef BATCH

// where do temporary files go?
#undef TMPDIR "/tmp/"

#ifdef MAC
#undef HAVE_TEMPLATES
#define try
#else
#define HAVE_TEMPLATES
#endif

#endif

/***********/
/**  End  **/
/***********/