From owner-svn-ports-all@freebsd.org Wed Sep 30 11:10:03 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BF5C2424CC7; Wed, 30 Sep 2020 11:10:03 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C1YSW4jvlz46VV; Wed, 30 Sep 2020 11:10:03 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 80DC31E9B8; Wed, 30 Sep 2020 11:10:03 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08UBA3qc025285; Wed, 30 Sep 2020 11:10:03 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08UBA2OH025279; Wed, 30 Sep 2020 11:10:02 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009301110.08UBA2OH025279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Wed, 30 Sep 2020 11:10:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550681 - in head/games/prboom: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/games/prboom: . files X-SVN-Commit-Revision: 550681 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2020 11:10:03 -0000 Author: se Date: Wed Sep 30 11:10:02 2020 New Revision: 550681 URL: https://svnweb.freebsd.org/changeset/ports/550681 Log: Fix build with -fno-common Added: head/games/prboom/files/patch-src_gl__intern.h (contents, props changed) head/games/prboom/files/patch-src_gl__main.c (contents, props changed) Modified: head/games/prboom/Makefile Modified: head/games/prboom/Makefile ============================================================================== --- head/games/prboom/Makefile Wed Sep 30 11:03:29 2020 (r550680) +++ head/games/prboom/Makefile Wed Sep 30 11:10:02 2020 (r550681) @@ -3,7 +3,7 @@ PORTNAME= prboom PORTVERSION= 2.5.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/${PORTVERSION} @@ -12,9 +12,11 @@ COMMENT= Multiplayer-capable and modified version of I LICENSE= GPLv2 -LIB_DEPENDS= libsmpeg.so:multimedia/smpeg +LIB_DEPENDS= libsmpeg.so:multimedia/smpeg \ + libpng16.so:graphics/png USES= gmake sdl +USE_GL= gl USE_SDL= mixer net sdl GNU_CONFIGURE= yes Added: head/games/prboom/files/patch-src_gl__intern.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/prboom/files/patch-src_gl__intern.h Wed Sep 30 11:10:02 2020 (r550681) @@ -0,0 +1,10 @@ +--- src/gl_intern.h.orig 2008-10-11 12:10:39 UTC ++++ src/gl_intern.h +@@ -83,6 +83,6 @@ int gld_GetTexDimension(int value); + void gld_SetTexturePalette(GLenum target); + void gld_Precache(void); + +-PFNGLCOLORTABLEEXTPROC gld_ColorTableEXT; ++extern PFNGLCOLORTABLEEXTPROC gld_ColorTableEXT; + + #endif // _GL_INTERN_H Added: head/games/prboom/files/patch-src_gl__main.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/prboom/files/patch-src_gl__main.c Wed Sep 30 11:10:02 2020 (r550681) @@ -0,0 +1,11 @@ +--- src/gl_main.c.orig 2008-10-18 13:32:29 UTC ++++ src/gl_main.c +@@ -83,6 +83,8 @@ int gl_paletted_texture = 0; + int gl_shared_texture_palette = 0; + int gl_sprite_offset; // item out of floor offset Mead 8/13/03 + ++PFNGLCOLORTABLEEXTPROC gld_ColorTableEXT; ++ + GLuint gld_DisplayList=0; + int fog_density=200; + static float extra_red=0.0f;