View | Details | Raw Unified | Return to bug 236988 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-3 / +3 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	gzdoom
3
PORTNAME=	gzdoom
4
PORTVERSION=	3.7.2
4
PORTVERSION=	4.0.0
5
PORTREVISION=	1
6
DISTVERSIONPREFIX=	g
5
DISTVERSIONPREFIX=	g
7
CATEGORIES=	games
6
CATEGORIES=	games
8
7
Lines 22-28 Link Here
22
		libfluidsynth.so:audio/fluidsynth \
21
		libfluidsynth.so:audio/fluidsynth \
23
		libgme.so:audio/libgme
22
		libgme.so:audio/libgme
24
23
25
USES=		cmake gettext jpeg openal pkgconfig
24
USES=		cmake compiler:c++11-lang gettext gl gnome jpeg openal \
25
		pkgconfig sdl
26
26
27
DATADIR=	${DMDIR}/${PORTNAME}
27
DATADIR=	${DMDIR}/${PORTNAME}
28
28
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1549010707
1
TIMESTAMP = 1554660640
2
SHA256 (coelckers-gzdoom-g3.7.2_GH0.tar.gz) = 5fb57c83b733d77688b5809b3bd64ab87f0976f4e81d3bbac0ea0785a24646cc
2
SHA256 (coelckers-gzdoom-g4.0.0_GH0.tar.gz) = ff46686505ca061ffc399e845925c452f5645f8ac100ad0d34f8701b0a4bbce7
3
SIZE (coelckers-gzdoom-g3.7.2_GH0.tar.gz) = 10512467
3
SIZE (coelckers-gzdoom-g4.0.0_GH0.tar.gz) = 12718762
(-)files/patch-src_posix_sdl_sdlglvideo.cpp (+25 lines)
Line 0 Link Here
1
--- src/posix/sdl/sdlglvideo.cpp.orig	2019-04-07 07:11:51 UTC
2
+++ src/posix/sdl/sdlglvideo.cpp
3
@@ -189,7 +189,9 @@ class SDLVideo : public IVideo
4
 {
5
 public:
6
 	SDLVideo ();
7
+#ifdef HAVE_VULKAN
8
 	~SDLVideo ();
9
+#endif
10
 
11
 	DFrameBuffer *CreateFrameBuffer ();
12
 
13
@@ -256,10 +258,12 @@ SDLVideo::SDLVideo ()
14
 #endif
15
 }
16
 
17
+#ifdef HAVE_VULKAN
18
 SDLVideo::~SDLVideo ()
19
 {
20
 	delete device;
21
 }
22
+#endif
23
 
24
 DFrameBuffer *SDLVideo::CreateFrameBuffer ()
25
 {

Return to bug 236988