2009-01-13 04:40:13 +05:00
|
|
|
#ifndef FILE_MYDEFS
|
|
|
|
#define FILE_MYDEFS
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/* File: mydefs.hh */
|
|
|
|
/* Author: Joachim Schoeberl */
|
|
|
|
/* Date: 10. Mar. 98 */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
defines for graphics, testmodes, ...
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// #define DEBUG
|
|
|
|
|
2009-02-01 01:16:46 +05:00
|
|
|
// Philippose - 31/01/2009
|
|
|
|
// Hack for the Windows Version
|
|
|
|
// in Linux, "PACKAGE_VERSION" is replaced
|
|
|
|
// in the configure/make phases, with the
|
|
|
|
// right version number
|
|
|
|
#ifdef WIN32
|
2010-04-16 03:06:22 +06:00
|
|
|
#define PACKAGE_VERSION "4.9.13-RC"
|
2009-02-01 01:16:46 +05:00
|
|
|
#endif
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-17 10:07:42 +06:00
|
|
|
#ifdef WIN32
|
|
|
|
#define DLL_HEADER __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define DLL_HEADER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#define noDEMOVERSION
|
|
|
|
#define noDEVELOP
|
|
|
|
#define noSTEP
|
|
|
|
#define noSOLIDGEOM
|
|
|
|
|
|
|
|
#define noDEMOAPP
|
|
|
|
#define noMODELLER
|
|
|
|
|
|
|
|
#define noSTAT_STREAM
|
|
|
|
#define noLOG_STREAM
|
|
|
|
|
|
|
|
#endif
|