From c6739b6427261ac2682a9fca3b23c98df0dc9f60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 6 Nov 2015 07:40:42 +0100 Subject: New upstream release --- h/aconfig.h | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'h') diff --git a/h/aconfig.h b/h/aconfig.h index 4b24c82..50275ea 100644 --- a/h/aconfig.h +++ b/h/aconfig.h @@ -9,8 +9,31 @@ /* minor number = 8 bits */ /* major number = 8 bits */ -#define ARGYLL_VERSION 0x01082 -#define ARGYLL_VERSION_STR "1.8.2" +#define ARGYLL_VERSION 0x01083 +#define ARGYLL_VERSION_STR "1.8.3" + +#if defined(NT) +# if defined(_WIN64) +# define ARGYLL_BUILD_STR "MSWin 64 bit" +# else +# define ARGYLL_BUILD_STR "MSWin 32 bit" +# endif +#endif +#if defined(UNIX) +# if defined(__APPLE__) +# if defined(__LP64__) +# define ARGYLL_BUILD_STR "OS X 64 bit" +# else +# define ARGYLL_BUILD_STR "OS X 32 bit" +# endif +# else +# if defined(__LP64__) +# define ARGYLL_BUILD_STR "Linux 64 bit" +# else +# define ARGYLL_BUILD_STR "Linux 32 bit" +# endif +# endif +#endif /* Maximum file path length */ #define MAXNAMEL 1024 -- cgit v1.2.3