Date: Fri, 10 May 2019 15:30:12 +0000 (UTC) From: Dirk Meyer <dinoex@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501180 - in head/emulators/vice: . files Message-ID: <201905101530.x4AFUCEp045246@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905101530.x4AFUCEp045246>