pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/databases
Module Name: pkgsrc
Committed By: nia
Date: Sat Feb 22 09:08:01 UTC 2025
Modified Files:
pkgsrc/databases/postgresql14: Makefile.common
pkgsrc/databases/postgresql15: Makefile.common
pkgsrc/databases/postgresql16: Makefile.common
pkgsrc/databases/postgresql17: Makefile.common
Log Message:
postgres: many MAKE_JOBS issues remain, for example
fatal error: 'catalog/pg_type_d.h' file not found
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql14/Makefile.common
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql15/Makefile.common
cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql16/Makefile.common
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql17/Makefile.common
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/databases/postgresql14/Makefile.common
diff -u pkgsrc/databases/postgresql14/Makefile.common:1.20 pkgsrc/databases/postgresql14/Makefile.common:1.21
--- pkgsrc/databases/postgresql14/Makefile.common:1.20 Fri Feb 21 17:29:07 2025
+++ pkgsrc/databases/postgresql14/Makefile.common Sat Feb 22 09:08:01 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.20 2025/02/21 17:29:07 adam Exp $
+# $NetBSD: Makefile.common,v 1.21 2025/02/22 09:08:01 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -94,6 +94,12 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# Sporadic failures with a _high_ number of MAKE_JOBS.
+# Please override this locally if you can't reproduce it rather
+# than removing MAKE_JOBS_SAFE, since this is necessary for
+# bulk build stability.
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql15/Makefile.common
diff -u pkgsrc/databases/postgresql15/Makefile.common:1.14 pkgsrc/databases/postgresql15/Makefile.common:1.15
--- pkgsrc/databases/postgresql15/Makefile.common:1.14 Fri Feb 21 17:29:07 2025
+++ pkgsrc/databases/postgresql15/Makefile.common Sat Feb 22 09:08:01 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.14 2025/02/21 17:29:07 adam Exp $
+# $NetBSD: Makefile.common,v 1.15 2025/02/22 09:08:01 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -97,6 +97,12 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# Sporadic failures with a _high_ number of MAKE_JOBS.
+# Please override this locally if you can't reproduce it rather
+# than removing MAKE_JOBS_SAFE, since this is necessary for
+# bulk build stability.
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql16/Makefile.common
diff -u pkgsrc/databases/postgresql16/Makefile.common:1.11 pkgsrc/databases/postgresql16/Makefile.common:1.12
--- pkgsrc/databases/postgresql16/Makefile.common:1.11 Fri Feb 21 17:29:07 2025
+++ pkgsrc/databases/postgresql16/Makefile.common Sat Feb 22 09:08:01 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.11 2025/02/21 17:29:07 adam Exp $
+# $NetBSD: Makefile.common,v 1.12 2025/02/22 09:08:01 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -97,6 +97,12 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# Sporadic failures with a _high_ number of MAKE_JOBS.
+# Please override this locally if you can't reproduce it rather
+# than removing MAKE_JOBS_SAFE, since this is necessary for
+# bulk build stability.
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql17/Makefile.common
diff -u pkgsrc/databases/postgresql17/Makefile.common:1.5 pkgsrc/databases/postgresql17/Makefile.common:1.6
--- pkgsrc/databases/postgresql17/Makefile.common:1.5 Fri Feb 21 17:29:08 2025
+++ pkgsrc/databases/postgresql17/Makefile.common Sat Feb 22 09:08:01 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.5 2025/02/21 17:29:08 adam Exp $
+# $NetBSD: Makefile.common,v 1.6 2025/02/22 09:08:01 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -97,6 +97,12 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# Sporadic failures with a _high_ number of MAKE_JOBS.
+# Please override this locally if you can't reproduce it rather
+# than removing MAKE_JOBS_SAFE, since this is necessary for
+# bulk build stability.
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Home |
Main Index |
Thread Index |
Old Index