games/gzdoom: update to 4.1.1

Commit the whole patch this time.

Approved by:	mat (mentor), kevans (maintainer)
This commit is contained in:
Piotr Kubaj 2019-05-11 14:14:01 +00:00
parent 75055f8a7f
commit d4111913ef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=501260
4 changed files with 27 additions and 6 deletions

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= gzdoom
PORTVERSION= 3.7.2
PORTREVISION= 1
PORTVERSION= 4.1.1
DISTVERSIONPREFIX= g
CATEGORIES= games
@ -22,7 +21,8 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfluidsynth.so:audio/fluidsynth \
libgme.so:audio/libgme
USES= cmake gettext jpeg openal pkgconfig
USES= cmake compiler:c++11-lang gettext gl gnome jpeg openal \
pkgconfig sdl
DATADIR= ${DMDIR}/${PORTNAME}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1549010707
SHA256 (coelckers-gzdoom-g3.7.2_GH0.tar.gz) = 5fb57c83b733d77688b5809b3bd64ab87f0976f4e81d3bbac0ea0785a24646cc
SIZE (coelckers-gzdoom-g3.7.2_GH0.tar.gz) = 10512467
TIMESTAMP = 1557581862
SHA256 (coelckers-gzdoom-g4.1.1_GH0.tar.gz) = 50ce34b48518fb8715d6e346ff3ac8d08fd24b34e764be88335810fa592fb84a
SIZE (coelckers-gzdoom-g4.1.1_GH0.tar.gz) = 13008847

View File

@ -0,0 +1,10 @@
--- src/gamedata/fonts/font.cpp.orig 2019-05-03 16:07:35 UTC
+++ src/gamedata/fonts/font.cpp
@@ -35,6 +35,7 @@
// HEADER FILES ------------------------------------------------------------
+#include <cwctype>
#include <stdlib.h>
#include <string.h>
#include <math.h>

View File

@ -0,0 +1,11 @@
--- src/rendering/vulkan/thirdparty/vk_mem_alloc/vk_mem_alloc.h.orig 2019-05-03 15:59:56 UTC
+++ src/rendering/vulkan/thirdparty/vk_mem_alloc/vk_mem_alloc.h
@@ -2229,7 +2229,7 @@ remove them if not needed.
#include <mutex> // for std::mutex
#include <atomic> // for std::atomic
-#if !defined(_WIN32) && !defined(__APPLE__)
+#if !defined(_WIN32) && !defined(__APPLE__) && !defined(__FreeBSD__)
#include <malloc.h> // for aligned_alloc()
#endif