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 gettext gl gnome jpeg openal pkgconfig sdl
26
25
27
DATADIR=	${DMDIR}/${PORTNAME}
26
DATADIR=	${DMDIR}/${PORTNAME}
28
27
Lines 29-34 Link Here
29
USE_GITHUB=	yes
28
USE_GITHUB=	yes
30
GH_ACCOUNT=	coelckers
29
GH_ACCOUNT=	coelckers
31
30
31
USE_GCC=	yes
32
USE_GNOME=	atk cairo gdkpixbuf2 gtk20 pango
32
USE_GNOME=	atk cairo gdkpixbuf2 gtk20 pango
33
USE_SDL=	sdl2
33
USE_SDL=	sdl2
34
USE_GL=		gl glu
34
USE_GL=		gl glu
(-)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 (+29 lines)
Line 0 Link Here
1
--- src/posix/sdl/sdlglvideo.cpp.orig	2019-04-12 20:46:17 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
@@ -253,13 +255,15 @@ SDLVideo::SDLVideo ()
14
 			Priv::vulkanEnabled = false;
15
 		}
16
 	}
17
-#endif
18
 }
19
+#endif
20
 
21
+#ifdef HAVE_VULKAN
22
 SDLVideo::~SDLVideo ()
23
 {
24
 	delete device;
25
 }
26
+#endif
27
 
28
 DFrameBuffer *SDLVideo::CreateFrameBuffer ()
29
 {

Return to bug 236988