svn commit: r567927 - branches/2021Q1/sysutils/lcdproc
Piotr Kubaj
pkubaj at FreeBSD.org
Tue Mar 9 13:13:30 UTC 2021
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=""
More information about the svn-ports-all
mailing list