pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel
Module Name: pkgsrc
Committed By: js
Date: Tue Oct 7 23:11:59 UTC 2025
Modified Files:
pkgsrc/devel/git: Makefile.common
pkgsrc/devel/git-base: Makefile
Log Message:
Make devel/git-base work on QNX
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/git/Makefile.common
cvs rdiff -u -r1.126 -r1.127 pkgsrc/devel/git-base/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/git/Makefile.common
diff -u pkgsrc/devel/git/Makefile.common:1.11 pkgsrc/devel/git/Makefile.common:1.12
--- pkgsrc/devel/git/Makefile.common:1.11 Sun Oct 5 19:28:06 2025
+++ pkgsrc/devel/git/Makefile.common Tue Oct 7 23:11:59 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.11 2025/10/05 19:28:06 js Exp $
+# $NetBSD: Makefile.common,v 1.12 2025/10/07 23:11:59 js Exp $
#
# used by devel/git-base/Makefile
# used by devel/git-contrib/Makefile
@@ -11,7 +11,6 @@
.include "../../devel/git/Makefile.version"
DISTNAME= git-${GIT_VERSION}
-PKGREVISION= 1
CATEGORIES= devel scm
MASTER_SITES?= https://www.kernel.org/pub/software/scm/git/
EXTRACT_SUFX= .tar.xz
Index: pkgsrc/devel/git-base/Makefile
diff -u pkgsrc/devel/git-base/Makefile:1.126 pkgsrc/devel/git-base/Makefile:1.127
--- pkgsrc/devel/git-base/Makefile:1.126 Sun Oct 5 19:25:50 2025
+++ pkgsrc/devel/git-base/Makefile Tue Oct 7 23:11:59 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.126 2025/10/05 19:25:50 js Exp $
+# $NetBSD: Makefile,v 1.127 2025/10/07 23:11:59 js Exp $
-PKGREVISION= 1
+PKGREVISION= 2
.include "../../devel/git/Makefile.common"
PKGNAME= git-base-${GIT_VERSION}
@@ -25,6 +25,11 @@ CONFIGURE_ARGS+= --with-zlib=${BUILDLINK
CONFIGURE_ARGS+= --without-python # only needed for git-p4
CONFIGURE_ARGS+= --without-tcltk
+# QNX does not allow fork() when there is more than one thread.
+# A sane choice, since fork() and threads is basically never safe and
+# posix_spawn should be used instead. But alas, git doesn't support posix_spawn.
+CONFIGURE_ARGS.QNX+= --disable-pthreads
+
BUILD_TARGET= all
TEST_TARGET= test
Home |
Main Index |
Thread Index |
Old Index