pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/ftnchek



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Mar 27 15:08:48 UTC 2022

Modified Files:
        pkgsrc/devel/ftnchek: distinfo
Added Files:
        pkgsrc/devel/ftnchek/patches: patch-configure
Removed Files:
        pkgsrc/devel/ftnchek/patches: patch-aa

Log Message:
ftncheck: Fix RELRO builds by honoring LDFLAGS.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/ftnchek/distinfo
cvs rdiff -u -r1.7 -r0 pkgsrc/devel/ftnchek/patches/patch-aa
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/ftnchek/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/devel/ftnchek/distinfo
diff -u pkgsrc/devel/ftnchek/distinfo:1.12 pkgsrc/devel/ftnchek/distinfo:1.13
--- pkgsrc/devel/ftnchek/distinfo:1.12  Tue Oct 26 10:14:39 2021
+++ pkgsrc/devel/ftnchek/distinfo       Sun Mar 27 15:08:48 2022
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.12 2021/10/26 10:14:39 nia Exp $
+$NetBSD: distinfo,v 1.13 2022/03/27 15:08:48 nia Exp $
 
 BLAKE2s (ftnchek-3.3.1.tar.gz) = bef4fa4fde385b4cf90697e74a0613f5c63a8a175d193432f04097493fe96ea4
 SHA512 (ftnchek-3.3.1.tar.gz) = 14c698a6d936ffcd1966822f3b307fc2a70ffd5d58dcff27e10a9491562cff12ef75d98c0e67a7053e106df4f6b4d920e8164950778c5e13e7c15543fa2ecc41
 Size (ftnchek-3.3.1.tar.gz) = 1048638 bytes
-SHA1 (patch-aa) = 06fd3c31a337e6d11cf10740da3f1ff40860dcde
 SHA1 (patch-ab) = 3d3801e7da1aed77ec8215fbf189333ab3f92b4e
+SHA1 (patch-configure) = 43186592c61fb5a198b535d98ac18510b5747000

Added files:

Index: pkgsrc/devel/ftnchek/patches/patch-configure
diff -u /dev/null pkgsrc/devel/ftnchek/patches/patch-configure:1.1
--- /dev/null   Sun Mar 27 15:08:48 2022
+++ pkgsrc/devel/ftnchek/patches/patch-configure        Sun Mar 27 15:08:48 2022
@@ -0,0 +1,31 @@
+$NetBSD: patch-configure,v 1.1 2022/03/27 15:08:48 nia Exp $
+
+Honor CFLAGS/LDFLAGS from environment.
+
+--- configure.orig     2004-12-29 19:14:28.000000000 +0000
++++ configure
+@@ -6772,7 +6772,6 @@ fi
+ OS_FLAGS=
+ OPT=
+ LDLIBS=
+-LDFLAGS=
+ case $host_os in
+   aix*)
+     if test -z "$GCC"; then
+@@ -6822,6 +6821,7 @@ case $host_os in
+     if test -n "$GCC"; then
+       OPT="-O2";
+     fi;;
++  netbsd*) ;;
+   next*)
+     OPT="-O2";;
+ 
+@@ -6945,7 +6945,7 @@ else
+ fi
+ 
+ 
+-CFLAGS="-DUNIX \$(OPT) $OS_FLAGS $PROTOFLAG \$(OPTIONS)"
++CFLAGS="$CFLAGS -DUNIX \$(OPT) $OS_FLAGS $PROTOFLAG \$(OPTIONS)"
+ echo "$as_me:$LINENO: result: Compile command is $CC $CFLAGS" >&5
+ echo "${ECHO_T}Compile command is $CC $CFLAGS" >&6
+ echo "$as_me:$LINENO: result: \$(OPT) is $OPT" >&5



Home | Main Index | Thread Index | Old Index