pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/print/ghostscript-agpl
Module Name: pkgsrc
Committed By: nia
Date: Mon Mar 16 12:12:19 UTC 2026
Modified Files:
pkgsrc/print/ghostscript-agpl: distinfo
pkgsrc/print/ghostscript-agpl/patches: patch-configure
Log Message:
ghostscript-agpl: Avoid warnings-as-errors.
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 pkgsrc/print/ghostscript-agpl/distinfo
cvs rdiff -u -r1.12 -r1.13 \
pkgsrc/print/ghostscript-agpl/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/print/ghostscript-agpl/distinfo
diff -u pkgsrc/print/ghostscript-agpl/distinfo:1.56 pkgsrc/print/ghostscript-agpl/distinfo:1.57
--- pkgsrc/print/ghostscript-agpl/distinfo:1.56 Sun Sep 21 18:19:54 2025
+++ pkgsrc/print/ghostscript-agpl/distinfo Mon Mar 16 12:12:19 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.56 2025/09/21 18:19:54 wiz Exp $
+$NetBSD: distinfo,v 1.57 2026/03/16 12:12:19 nia Exp $
BLAKE2s (ghostscript-10.06.0.tar.xz) = 52cf486c0daa8286f4e68e10a277c5cc66ac3ce1e7db5d781b16b42161ccc6b1
SHA512 (ghostscript-10.06.0.tar.xz) = e9efa6a334cf34703f565f5043dd794452270415b34c2bea260e9dac6c72ebbcbedfa2e4cb9029841f8f582bbce91be8160e135a190081f3262bcf04417f80f1
@@ -8,5 +8,5 @@ SHA1 (patch-base_lib.mak) = 1a10fc045e2d
SHA1 (patch-base_mkromfs.c) = 9d9afbd0fbb8c70c8f4f7de3cadc5b54541f0db0
SHA1 (patch-base_ttobjs.h) = 378ad7d316a4a9dc53b9c8e612582a7c8e9b3688
SHA1 (patch-base_unix-dll.mak) = 8076ce689807872bf94b552daaf9547b646ca249
-SHA1 (patch-configure) = 8a25a15d4100a7f0d7b8b131f444629ac9b52d21
+SHA1 (patch-configure) = 0f383a036b81baab9b92921ab327715187bdb818
SHA1 (patch-devices_devs.mak) = e9937d401a278cc6d0a6d4cff78c526375bc18ca
Index: pkgsrc/print/ghostscript-agpl/patches/patch-configure
diff -u pkgsrc/print/ghostscript-agpl/patches/patch-configure:1.12 pkgsrc/print/ghostscript-agpl/patches/patch-configure:1.13
--- pkgsrc/print/ghostscript-agpl/patches/patch-configure:1.12 Wed Sep 25 20:27:24 2024
+++ pkgsrc/print/ghostscript-agpl/patches/patch-configure Mon Mar 16 12:12:19 2026
@@ -1,13 +1,15 @@
-$NetBSD: patch-configure,v 1.12 2024/09/25 20:27:24 triaxx Exp $
+$NetBSD: patch-configure,v 1.13 2026/03/16 12:12:19 nia Exp $
Use system zlib for linking.
Add rpath.
Get all LDFLAGS for FreeType2.
Use correct install_name with path on Darwin.
+Remove -Werror flags that are suitable for development but not for
+packaging for a wide range of OSes and architectures.
---- configure.orig 2024-09-18 07:34:15.000000000 +0000
+--- configure.orig 2025-09-09 09:36:39.000000000 +0000
+++ configure
-@@ -4837,7 +4837,7 @@ CFLAGSAUX_STANDARDTMP="\$(CFLAGS_STANDAR
+@@ -4845,7 +4845,7 @@ CFLAGSAUX_STANDARDTMP="\$(CFLAGS_STANDAR
CFLAGSAUX_DEBUGTMP="\$(CFLAGS_DEBUG)"
CFLAGSAUX_PROFILETMP="\$(CFLAGS_PROFILE)"
LDFLAGSAUXTMP="\$(LDFLAGS)"
@@ -16,7 +18,7 @@ Use correct install_name with path on Da
# purposefully do not include "help" output for this
# Check whether --enable-save_confaux was given.
-@@ -5593,10 +5593,7 @@ case $host in
+@@ -5601,10 +5601,7 @@ case $host in
*-sun*|*-solaris*)
CC_OPT_FLAGS_TO_TRY="-O2 -DNDEBUG"
CFLAGS_LARGEFILE="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
@@ -28,7 +30,18 @@ Use correct install_name with path on Da
if test x"$GCC" = x"yes"; then
CC_OPT_FLAGS_TO_TRY="-O2 -DNDEBUG"
CC_DBG_FLAGS_TO_TRY="-gdwarf-2 -g3 -O0"
-@@ -9251,7 +9248,7 @@ fi
+@@ -5630,8 +5627,8 @@ esac
+ if test x"$GCC" = x"yes"; then
+ cflags_to_try="-Wall -Wstrict-prototypes -Wundef \
+ -Wmissing-declarations -Wmissing-prototypes -Wwrite-strings \
+--fno-strict-aliasing -Werror=declaration-after-statement \
+--fno-builtin -fno-common -Werror=return-type -Wno-unused-local-typedefs $CFLAGS_LARGEFILE"
++-fno-strict-aliasing \
++-fno-builtin -fno-common -Wno-unused-local-typedefs $CFLAGS_LARGEFILE"
+ optflags_to_try="$CC_OPT_FLAGS_TO_TRY"
+ dbgflags_to_try="$CC_DBG_FLAGS_TO_TRY"
+ else
+@@ -9257,7 +9254,7 @@ fi
fi
if test x$with_libpaper != xno; then
@@ -37,7 +50,7 @@ Use correct install_name with path on Da
printf "%s\n" "#define USE_LIBPAPER 1" >>confdefs.h
-@@ -13333,11 +13330,11 @@ case $host in
+@@ -13496,11 +13493,11 @@ case $host in
;;
*-darwin*)
DYNAMIC_CFLAGS="-fPIC $DYNAMIC_CFLAGS"
@@ -54,7 +67,7 @@ Use correct install_name with path on Da
DYNAMIC_LIBS=""
SO_LIB_EXT=""
DLL_EXT=".dylib"
-@@ -13354,11 +13351,11 @@ case $host in
+@@ -13517,11 +13514,11 @@ case $host in
#fi
# ^^^ untested
fi
Home |
Main Index |
Thread Index |
Old Index