From owner-svn-ports-all@freebsd.org Mon May 4 11:12:25 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 3F41D2CCA34; Mon, 4 May 2020 11:12:25 +0000 (UTC) (envelope-from dinoex@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) server-signature RSA-PSS (4096 bits) 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 49G0Z10zSdz43VC; Mon, 4 May 2020 11:12:25 +0000 (UTC) (envelope-from dinoex@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 1CDE8233CE; Mon, 4 May 2020 11:12:25 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 044BCOQ5007576; Mon, 4 May 2020 11:12:24 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 044BCOqd007573; Mon, 4 May 2020 11:12:24 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <202005041112.044BCOqd007573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Mon, 4 May 2020 11:12:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533915 - in head: emulators/vice emulators/vice/files graphics/swftools X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head: emulators/vice emulators/vice/files graphics/swftools X-SVN-Commit-Revision: 533915 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.29 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: Mon, 04 May 2020 11:12:25 -0000 Author: dinoex Date: Mon May 4 11:12:24 2020 New Revision: 533915 URL: https://svnweb.freebsd.org/changeset/ports/533915 Log: - fix build with -fcommon Added: head/emulators/vice/files/patch-src__rs232drv_rs232.h (contents, props changed) Modified: head/emulators/vice/Makefile head/graphics/swftools/Makefile Modified: head/emulators/vice/Makefile ============================================================================== --- head/emulators/vice/Makefile Mon May 4 11:11:11 2020 (r533914) +++ head/emulators/vice/Makefile Mon May 4 11:12:24 2020 (r533915) @@ -34,6 +34,7 @@ USE_XORG= xpm ice sm xext xv xt x11 xmu xxf86vm USE_XORG+= xrender xinerama xi xrandr xcursor xcomposite xdamage xfixes HAS_CONFIGURE= yes MAKE_ENV+= MAKEINFOFLAGS="--no-split" +CFLAGS+= -fcommon CONFIGURE_ARGS+= --enable-ipv6 \ --enable-external-ffmpeg \ --enable-x64 \ Added: head/emulators/vice/files/patch-src__rs232drv_rs232.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/vice/files/patch-src__rs232drv_rs232.h Mon May 4 11:12:24 2020 (r533915) @@ -0,0 +1,11 @@ +--- src/rs232drv/rs232.h.orig 2019-11-21 00:03:29 UTC ++++ src/rs232drv/rs232.h +@@ -78,7 +78,7 @@ extern int rs232_cmdline_options_init(void); + #define RS232_NUM_DEVICES 4 + + extern char *rs232_devfile[RS232_NUM_DEVICES]; +-int rs232_useip232[RS232_NUM_DEVICES]; ++extern int rs232_useip232[RS232_NUM_DEVICES]; + + /* the "ip232" protocol used by tcpser + Modified: head/graphics/swftools/Makefile ============================================================================== --- head/graphics/swftools/Makefile Mon May 4 11:11:11 2020 (r533914) +++ head/graphics/swftools/Makefile Mon May 4 11:12:24 2020 (r533915) @@ -29,6 +29,7 @@ LMAN1= as3compile.1 font2swf.1 gif2swf.1 jpeg2swf.1 p swfextract.1 swfrender.1 swfstrings.1 wav2swf.1 CPPFLAGS+= -I${LOCALBASE}/include +CFLAGS+= -fcommon LDFLAGS+= -L${LOCALBASE}/lib BINFILES= as3compile font2swf gif2swf jpeg2swf pdf2swf png2swf \