pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/powerdns
Module Name: pkgsrc
Committed By: wiz
Date: Thu Jul 24 07:50:01 UTC 2025
Modified Files:
pkgsrc/net/powerdns: distinfo
Added Files:
pkgsrc/net/powerdns/patches: patch-configure
Log Message:
powerdns*: fix unportable test(1) operator
To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 pkgsrc/net/powerdns/distinfo
cvs rdiff -u -r0 -r1.14 pkgsrc/net/powerdns/patches/patch-configure
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/powerdns/distinfo
diff -u pkgsrc/net/powerdns/distinfo:1.51 pkgsrc/net/powerdns/distinfo:1.52
--- pkgsrc/net/powerdns/distinfo:1.51 Mon Jun 30 11:00:50 2025
+++ pkgsrc/net/powerdns/distinfo Thu Jul 24 07:50:00 2025
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.51 2025/06/30 11:00:50 jperkin Exp $
+$NetBSD: distinfo,v 1.52 2025/07/24 07:50:00 wiz Exp $
BLAKE2s (pdns-4.9.5.tar.bz2) = 5695108093c45363e9eb3b2adc4ea3f6134a0c535ddd4e6c5510135985861b48
SHA512 (pdns-4.9.5.tar.bz2) = ac1682b0616391240aa3dc618ea93855899987f2baa46546e6592a55fc0a83da1f1e2c08109d847a560e1a0c3106f7749935d0b152992ce85da715bb842d8dad
Size (pdns-4.9.5.tar.bz2) = 1380263 bytes
+SHA1 (patch-configure) = 9049a1b7edde25fd2304632af338999c32ee7596
SHA1 (patch-pdns_dnsscope.cc) = 221b860350acad10e0d2f1a854d7930819a598de
SHA1 (patch-pdns_misc.hh) = ffc2eea374157e25cae17743db900ff6e3101a66
SHA1 (patch-pdns_qtype.hh) = 4d086e28e7bacc624cf7db199ac16ebafec88e04
Added files:
Index: pkgsrc/net/powerdns/patches/patch-configure
diff -u /dev/null pkgsrc/net/powerdns/patches/patch-configure:1.14
--- /dev/null Thu Jul 24 07:50:01 2025
+++ pkgsrc/net/powerdns/patches/patch-configure Thu Jul 24 07:50:01 2025
@@ -0,0 +1,84 @@
+$NetBSD: patch-configure,v 1.14 2025/07/24 07:50:01 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- configure.orig 2025-07-24 07:47:20.356946188 +0000
++++ configure
+@@ -22199,12 +22199,12 @@ fi
+ then :
+
+
+- if test "x$enable_fortify_source" == "xauto"
++ if test "x$enable_fortify_source" = "xauto"
+ then :
+ enable_fortify_source=3
+ fi
+
+- if test "x$enable_fortify_source" == "x3"
++ if test "x$enable_fortify_source" = "x3"
+ then :
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler handles -D_FORTIFY_SOURCE=3" >&5
+@@ -22253,7 +22253,7 @@ fi
+
+ fi
+
+- if test "x$enable_fortify_source" == "x2"
++ if test "x$enable_fortify_source" = "x2"
+ then :
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler handles -D_FORTIFY_SOURCE=2" >&5
+@@ -22302,7 +22302,7 @@ fi
+
+ fi
+
+- if test "x$enable_fortify_source" == "x1"
++ if test "x$enable_fortify_source" = "x1"
+ then :
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler handles -D_FORTIFY_SOURCE=1" >&5
+@@ -27378,7 +27378,7 @@ fi
+ if test "x$PG_CONFIG" != "x" -o "x$PGSQL_LIBS" = "x"
+ then :
+
+- if test "x$PG_CONFIG" == "x"
++ if test "x$PG_CONFIG" = "x"
+ then :
+
+ # Extract the first word of "pg_config", so it can be a program name with args.
+@@ -27428,7 +27428,7 @@ fi
+
+
+ fi
+- if test "x$PG_CONFIG" == "x"
++ if test "x$PG_CONFIG" = "x"
+ then :
+
+ as_fn_error $? "Can not find pg_config, use --with-pg-config to specify the path to pg_config" "$LINENO" 5
+@@ -31468,7 +31468,7 @@ fi
+ then :
+
+
+- if test "x$enable_lto" == "xthin"
++ if test "x$enable_lto" = "xthin"
+ then :
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler handles -flto=thin" >&5
+@@ -31518,7 +31518,7 @@ fi
+
+ fi
+
+- if test "x$enable_lto" == "xauto"
++ if test "x$enable_lto" = "xauto"
+ then :
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler handles -flto=auto" >&5
+@@ -31568,7 +31568,7 @@ fi
+
+ fi
+
+- if test "x$enable_lto" == "xyes"
++ if test "x$enable_lto" = "xyes"
+ then :
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler handles -flto" >&5
Home |
Main Index |
Thread Index |
Old Index