svn commit: r501180 - in head/emulators/vice: . files

Dirk Meyer dinoex at FreeBSD.org
Fri May 10 15:30:13 UTC 2019


Author: dinoex
Date: Fri May 10 15:30:12 2019
New Revision: 501180
URL: https://svnweb.freebsd.org/changeset/ports/501180

Log:
  - fix build with GCC-based architectures
  PR:		236704
  Submitted by:	Piotr Kubaj

Added:
  head/emulators/vice/files/patch-src_iodrv_io-unix-access.c   (contents, props changed)
Modified:
  head/emulators/vice/Makefile

Modified: head/emulators/vice/Makefile
==============================================================================
--- head/emulators/vice/Makefile	Fri May 10 15:29:57 2019	(r501179)
+++ head/emulators/vice/Makefile	Fri May 10 15:30:12 2019	(r501180)
@@ -3,7 +3,7 @@
 
 PORTNAME=	vice
 PORTVERSION=	3.3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	emulators
 MASTER_SITES=	SF/vice-emu/releases
 

Added: head/emulators/vice/files/patch-src_iodrv_io-unix-access.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/vice/files/patch-src_iodrv_io-unix-access.c	Fri May 10 15:30:12 2019	(r501180)
@@ -0,0 +1,14 @@
+--- src/iodrv/io-unix-access.c.orig	2019-03-21 09:04:15 UTC
++++ src/iodrv/io-unix-access.c
+@@ -26,6 +26,11 @@
+ 
+ #include "vice.h"
+ 
++#if defined(__FreeBSD__) && defined(__ppc__)
++#include <sys/types.h>
++#include <machine/pio.h>
++#endif
++
+ #ifdef UNIX_COMPILE
+ 
+ #include <fcntl.h>


More information about the svn-ports-all mailing list