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:   gdt
Date:           Mon Oct 10 12:06:20 UTC 2022

Modified Files:
        pkgsrc/databases/postgresql12: Makefile.common
        pkgsrc/databases/postgresql12-client: Makefile

Log Message:
databases/postgresql12: Avoid autoconf MKDIR bug

Force autoconf to find mkdir as... mkdir.

Work around a bug in autoconf, that thinks almost all mkdir
implementations are deficient, and a bug someplace between postgis
and pgxs, that causes topology/Makefile.in to run pgxs's install-sh
but without a path.

As discussed on tech-pkg@.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/databases/postgresql12/Makefile.common
cvs rdiff -u -r1.26 -r1.27 pkgsrc/databases/postgresql12-client/Makefile

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

Modified files:

Index: pkgsrc/databases/postgresql12/Makefile.common
diff -u pkgsrc/databases/postgresql12/Makefile.common:1.22 pkgsrc/databases/postgresql12/Makefile.common:1.23
--- pkgsrc/databases/postgresql12/Makefile.common:1.22  Mon Oct  3 07:50:27 2022
+++ pkgsrc/databases/postgresql12/Makefile.common       Mon Oct 10 12:06:19 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.22 2022/10/03 07:50:27 nia Exp $
+# $NetBSD: Makefile.common,v 1.23 2022/10/10 12:06:19 gdt Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -68,6 +68,12 @@ CONFIGURE_ARGS+=     --without-perl
 CONFIGURE_ARGS+=       --without-python
 CONFIGURE_ARGS+=       --without-tcl
 
+# Work around a bug in autoconf, that thinks almost all mkdir
+# implementations are deficient, and a bug someplace between postgis
+# and pgxs, that causes topology/Makefile.in to run pgxs's install-sh
+# but without a path.
+CONFIGURE_ENV+=                ac_cv_path_mkdir="mkdir"
+
 # avoid pointing to a wrapper
 CONFIGURE_ENV+=                MSGFMT=${TOOLS_PATH.msgfmt}
 

Index: pkgsrc/databases/postgresql12-client/Makefile
diff -u pkgsrc/databases/postgresql12-client/Makefile:1.26 pkgsrc/databases/postgresql12-client/Makefile:1.27
--- pkgsrc/databases/postgresql12-client/Makefile:1.26  Mon Aug 15 20:59:37 2022
+++ pkgsrc/databases/postgresql12-client/Makefile       Mon Oct 10 12:06:19 2022
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.26 2022/08/15 20:59:37 adam Exp $
+# $NetBSD: Makefile,v 1.27 2022/10/10 12:06:19 gdt Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-client-/}
+PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql12/Makefile.common"



Home | Main Index | Thread Index | Old Index