svn commit: r534893 - head/multimedia/webcamd
Hans Petter Selasky
hselasky at FreeBSD.org
Mon May 11 08:34:29 UTC 2020
Author: hselasky
Date: Mon May 11 08:34:28 2020
New Revision: 534893
URL: https://svnweb.freebsd.org/changeset/ports/534893
Log:
Only set COMPAT32 option when building 64-bit platforms.
PR: 245698
Approved by: pi (implicit)
Modified:
head/multimedia/webcamd/Makefile
Modified: head/multimedia/webcamd/Makefile
==============================================================================
--- head/multimedia/webcamd/Makefile Mon May 11 08:07:36 2020 (r534892)
+++ head/multimedia/webcamd/Makefile Mon May 11 08:34:28 2020 (r534893)
@@ -25,7 +25,9 @@ OPTIONS_DEFAULT=DVB HAL INPUT RADIO WEBCAM
COMPAT32_DESC= Enable 32-bit compatibility support
COMPAT32_MAKE_ARGS= HAVE_COMPAT32="YES"
-.if exists(/usr/lib32/libcuse.so)
+.include <bsd.port.options.mk>
+
+.if ${ARCH} == amd64 || ${ARCH} == aarch64
OPTIONS_DEFAULT+= COMPAT32
.endif
More information about the svn-ports-all
mailing list