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 May 21 07:25:35 UTC 2022
Modified Files:
pkgsrc/databases/postgresql10: Makefile.common
pkgsrc/databases/postgresql11: Makefile.common
pkgsrc/databases/postgresql12: Makefile.common
pkgsrc/databases/postgresql13: Makefile.common
pkgsrc/databases/postgresql14: Makefile.common
Log Message:
postgresql*: Mark unsafe for MAKE_JOBS
To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/databases/postgresql10/Makefile.common
cvs rdiff -u -r1.26 -r1.27 pkgsrc/databases/postgresql11/Makefile.common
cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql12/Makefile.common
cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql13/Makefile.common
cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/postgresql14/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/postgresql10/Makefile.common
diff -u pkgsrc/databases/postgresql10/Makefile.common:1.33 pkgsrc/databases/postgresql10/Makefile.common:1.34
--- pkgsrc/databases/postgresql10/Makefile.common:1.33 Thu May 12 19:02:42 2022
+++ pkgsrc/databases/postgresql10/Makefile.common Sat May 21 07:25:34 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.33 2022/05/12 19:02:42 adam Exp $
+# $NetBSD: Makefile.common,v 1.34 2022/05/21 07:25:34 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -88,6 +88,9 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# "fatal error: catalog/pg_type_d.h: No such file or directory"
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql11/Makefile.common
diff -u pkgsrc/databases/postgresql11/Makefile.common:1.26 pkgsrc/databases/postgresql11/Makefile.common:1.27
--- pkgsrc/databases/postgresql11/Makefile.common:1.26 Thu May 12 19:02:43 2022
+++ pkgsrc/databases/postgresql11/Makefile.common Sat May 21 07:25:34 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.26 2022/05/12 19:02:43 adam Exp $
+# $NetBSD: Makefile.common,v 1.27 2022/05/21 07:25:34 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -88,6 +88,9 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# "fatal error: catalog/pg_type_d.h: No such file or directory"
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql12/Makefile.common
diff -u pkgsrc/databases/postgresql12/Makefile.common:1.19 pkgsrc/databases/postgresql12/Makefile.common:1.20
--- pkgsrc/databases/postgresql12/Makefile.common:1.19 Thu May 12 19:02:44 2022
+++ pkgsrc/databases/postgresql12/Makefile.common Sat May 21 07:25:35 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.19 2022/05/12 19:02:44 adam Exp $
+# $NetBSD: Makefile.common,v 1.20 2022/05/21 07:25:35 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -88,6 +88,9 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# "fatal error: catalog/pg_type_d.h: No such file or directory"
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql13/Makefile.common
diff -u pkgsrc/databases/postgresql13/Makefile.common:1.12 pkgsrc/databases/postgresql13/Makefile.common:1.13
--- pkgsrc/databases/postgresql13/Makefile.common:1.12 Thu May 12 19:02:45 2022
+++ pkgsrc/databases/postgresql13/Makefile.common Sat May 21 07:25:35 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.12 2022/05/12 19:02:45 adam Exp $
+# $NetBSD: Makefile.common,v 1.13 2022/05/21 07:25:35 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -88,6 +88,9 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# "fatal error: catalog/pg_type_d.h: No such file or directory"
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Index: pkgsrc/databases/postgresql14/Makefile.common
diff -u pkgsrc/databases/postgresql14/Makefile.common:1.4 pkgsrc/databases/postgresql14/Makefile.common:1.5
--- pkgsrc/databases/postgresql14/Makefile.common:1.4 Thu May 12 19:02:46 2022
+++ pkgsrc/databases/postgresql14/Makefile.common Sat May 21 07:25:35 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2022/05/12 19:02:46 adam Exp $
+# $NetBSD: Makefile.common,v 1.5 2022/05/21 07:25:35 nia Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -88,6 +88,9 @@ CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags
# https://www.postgresql.org/message-id/E1X0yaj-000753-N6%40gemulon.postgresql.org
BROKEN_ON_PLATFORM+= *-*-alpha
+# "fatal error: catalog/pg_type_d.h: No such file or directory"
+MAKE_JOBS_SAFE= no
+
.if ${MACHINE_ARCH} == "sparc"
CFLAGS.NetBSD+= -D__sparc_v8__
.endif
Home |
Main Index |
Thread Index |
Old Index