1 //************************************************************************** 2 //** 3 //** ## ## ## ## ## #### #### ### ### 4 //** ## ## ## ## ## ## ## ## ## ## #### #### 5 //** ## ## ## ## ## ## ## ## ## ## ## ## ## ## 6 //** ## ## ######## ## ## ## ## ## ## ## ### ## 7 //** ### ## ## ### ## ## ## ## ## ## 8 //** # ## ## # #### #### ## ## 9 //** 10 //** $Id: build.h 4360 2010-12-30 19:22:35Z dj_jl $ 11 //** 12 //** Copyright (C) 1999-2006 Jānis Legzdiņš 13 //** 14 //** This program is free software; you can redistribute it and/or 15 //** modify it under the terms of the GNU General Public License 16 //** as published by the Free Software Foundation; either version 2 17 //** of the License, or (at your option) any later version. 18 //** 19 //** This program is distributed in the hope that it will be useful, 20 //** but WITHOUT ANY WARRANTY; without even the implied warranty of 21 //** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 //** GNU General Public License for more details. 23 //** 24 //************************************************************************** 25 26 #define VERSION_MAJOR 1 27 #define VERSION_MINOR 33 28 #define VERSION_RELEASE 0 29 #define VERSION_TEXT "1.33" 30 31 // The version as seen in the Windows resource 32 #define RC_FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_RELEASE,SVN_REVISION_NUMBER 33 #define RC_PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_RELEASE,0 34 #define RC_FILEVERSION2 VERSION_TEXT " (r" SVN_REVISION_STRING ")" 35 #define RC_PRODUCTVERSION2 VERSION_TEXT 36 37 #if !defined CLIENT && !defined SERVER 38 #define CLIENT 39 #define SERVER 40 #endif 41 42 #if USE_ASM_I386 43 #if defined __GNUC__ 44 #define INLINE_ASM_I386_GAS 1 45 #elif (defined _MSC_VER || defined __BORLANDC__) 46 #define INLINE_ASM_I386_INTEL 1 47 #endif 48 #endif 49 50 // if rangecheck is undefined, most parameter validation debugging code 51 // will not be compiled 52 //#define PARANOID 1 53 54 //#define DEVELOPER 1 55