pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/Coin



Module Name:    pkgsrc
Committed By:   rillig
Date:           Thu May 21 06:55:30 UTC 2020

Modified Files:
        pkgsrc/graphics/Coin: Makefile

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 pkgsrc/graphics/Coin/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/Coin/Makefile
diff -u pkgsrc/graphics/Coin/Makefile:1.29 pkgsrc/graphics/Coin/Makefile:1.30
--- pkgsrc/graphics/Coin/Makefile:1.29  Wed Jul 18 00:06:18 2018
+++ pkgsrc/graphics/Coin/Makefile       Thu May 21 06:55:30 2020
@@ -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
 



Home | Main Index | Thread Index | Old Index