Date: Tue, 9 Mar 2021 13:13:30 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r567927 - branches/2021Q1/sysutils/lcdproc Message-ID: <202103091313.129DDU0b083078@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Tue Mar 9 13:13:30 2021 New Revision: 567927 URL: https://svnweb.freebsd.org/changeset/ports/567927 Log: MFH: r567926 sysutils/lcdproc: fix build on powerpc64 elfv2 Use GCC: In file included from serialVFD_io.c:45: ./port.h:344:32: error: invalid output constraint '=a' in asm __asm__ volatile ("inb %1,%0":"=a" (value) Modified: branches/2021Q1/sysutils/lcdproc/Makefile Directory Properties: branches/2021Q1/ (props changed) Modified: branches/2021Q1/sysutils/lcdproc/Makefile ============================================================================== --- branches/2021Q1/sysutils/lcdproc/Makefile Tue Mar 9 13:12:49 2021 (r567926) +++ branches/2021Q1/sysutils/lcdproc/Makefile Tue Mar 9 13:13:30 2021 (r567927) @@ -93,6 +93,10 @@ PLIST_SUB+= X86="" PLIST_SUB+= X86="@comment " .endif +.if ${ARCH} == powerpc64 +USE_GCC= any +.endif + .if ${PORT_OPTIONS:MUSB} CONFIGURE_ARGS+= --enable-libusb PLIST_SUB+= USB=""
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103091313.129DDU0b083078>