svn commit: r533915 - in head: emulators/vice emulators/vice/files graphics/swftools

Dirk Meyer dinoex at FreeBSD.org
Mon May 4 11:12:25 UTC 2020


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 \


More information about the svn-ports-head mailing list