diff -u mac-3.99-u4-b5-s7/debian/changelog mac-3.99-u4-b5-s7/debian/changelog --- mac-3.99-u4-b5-s7/debian/changelog +++ mac-3.99-u4-b5-s7/debian/changelog @@ -1,4 +1,5 @@ -mac (3.99-u4-b5-s7-2zesty) zesty; urgency=low +mac (3.99-u4-b5-s7-3zesty) zesty; urgency=low + * New program release - -- Alexander Sokolov Tue, 16 May 2017 20:55:00 +0300 + -- Alexander Sokolov Wed, 17 May 2017 20:02:35 +0300 diff -u mac-3.99-u4-b5-s7/debian/copyright mac-3.99-u4-b5-s7/debian/copyright --- mac-3.99-u4-b5-s7/debian/copyright +++ mac-3.99-u4-b5-s7/debian/copyright @@ -1,6 +1,4 @@ -This package was debianized by: - - Alexander Sokolov +This package was debianized by Alexander Sokolov It was downloaded from http://etree.org/shnutils/shntool/support/formats/ape/unix/ @@ -31,7 +29,7 @@ The Debian packaging is: - Copyright (C) 2009-2017 Alexander Sokolov + Copyright (C) 2009-2017 Alexander Sokolov and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. only in patch2: unchanged: --- mac-3.99-u4-b5-s7.orig/src/Shared/NoWindows.h +++ mac-3.99-u4-b5-s7/src/Shared/NoWindows.h @@ -39,8 +39,8 @@ typedef const wchar_t * LPCWSTR; #define ZeroMemory(POINTER, BYTES) memset(POINTER, 0, BYTES); -#define max(a,b) (((a) > (b)) ? (a) : (b)) -#define min(a,b) (((a) < (b)) ? (a) : (b)) +inline bool max(int a, int b) { return (a > b) ? a : b; } +inline bool min(int a, int b) { return (a < b) ? a : b; } #define __stdcall #define CALLBACK