summaryrefslogtreecommitdiff
path: root/graphics/Coin
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-05-21 06:55:30 +0000
committerrillig <rillig@pkgsrc.org>2020-05-21 06:55:30 +0000
commit0d567946ae92586ca125a0a9c43acc6b27671380 (patch)
treec3f827fccf7a5897a117a26a63aaf9cda3f7d9ec /graphics/Coin
parent75f54b89636fdfed53d56fcbbf9d6d6db87e6dd6 (diff)
downloadpkgsrc-0d567946ae92586ca125a0a9c43acc6b27671380.tar.gz
graphics/Coin: fix typo in configure option
The option --enable-pthreads was unknown, as a build with GNU_CONFIGURE_STRICT=yes showed. Fixing the typo showed exactly the same configure output as before, which is probably due to the autodetection.
Diffstat (limited to 'graphics/Coin')
-rw-r--r--graphics/Coin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/Coin/Makefile b/graphics/Coin/Makefile
index c809055a1ff..b8fd7cf24bb 100644
--- a/graphics/Coin/Makefile
+++ b/graphics/Coin/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2018/07/18 00:06:18 joerg Exp $
+# $NetBSD: Makefile,v 1.30 2020/05/21 06:55:30 rillig Exp $
DISTNAME= Coin-3.1.3
PKGREVISION= 3
@@ -20,7 +20,7 @@ CONFIGURE_ARGS+= --disable-debug
.include "../../mk/pthread.buildlink3.mk"
.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} != "none"
-CONFIGURE_ARGS+= --with-pthreads=yes
+CONFIGURE_ARGS+= --with-pthread=yes
CONFIGURE_ARGS+= --enable-threadsafe
.endif