X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=winboard%2Fconfig.h;h=f415156a9f4f9bdae2399a30d0c5e3d83d4c769e;hb=02fd92dd3dd8054335289fa0e253597494d3c630;hp=cc2c5c3477069f4ea2884df621ab30e4ef28fd33;hpb=82404dad2e42e00c825fd0d883c332ab709684c0;p=xboard.git diff --git a/winboard/config.h b/winboard/config.h index cc2c5c3..f415156 100644 --- a/winboard/config.h +++ b/winboard/config.h @@ -36,9 +36,27 @@ #define LAST_PTY_LETTER 'q' -#define PATCHLEVEL "0i" +/* Name of package */ +#define PACKAGE "WinBoard" -#define PRODUCT "WinBoard" +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "bug-xboard@gnu.org" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "WinBoard" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "WinBoard 4.9.0.20160402" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "winboard" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "4.9.0.20160402" + +/* Define the Windows-specific FILE version info. this *MUST* be four comma separated 16-bit integers */ +/* remember to not start a number with 0 (octal), dates like 2014,0901 would lead to an error */ +#define PACKAGE_FILEVERSION 4,9,2016,402 #define PTY_ITERATION @@ -54,8 +72,6 @@ #define USE_PTYS 0 -#define VERSION "4.4" - /*#undef X_WCHAR*/ #ifndef __BORLANDC__ @@ -126,6 +142,21 @@ #define _strdup(x) strdup(x) #define STRICT #define _winmajor 3 /* windows 95 */ -#define SCF_DEFAULT 0x0000 -#define SCF_ALL 0x0004 +#endif + +/* Some definitions required by MSVC 4.1 */ +#ifndef WM_MOUSEWHEEL +#define WM_MOUSEWHEEL 0x020A +#endif +#ifndef SCF_DEFAULT +#define SCF_DEFAULT 0x0000 +#define SCF_ALL 0x0004 +#endif + +#ifdef _MSC_VER +#define snprintf _snprintf +#define inline __inline +#if _MSC_VER < 1500 +#define vsnprintf _vsnprintf +#endif #endif