unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 4260e6129ec46775619dff0fa745648c80fb8830 4001 bytes (raw)
name: gnu/packages/patches/ncrack-fix-autotools-compat.patch 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
 
From: =?utf-8?q?Rapha=C3=ABl_Hertzog?= <hertzog@debian.org>
Date: Wed, 28 Aug 2019 11:47:34 +0200
Subject: Use stricter autoconf syntax imposed by newer versions

Bug: https://github.com/nmap/ncrack/pull/28

This allows the Debian packaging to use "autoreconf" with a recent
version of autoconf.
---
 nbase/acinclude.m4 | 24 ++++++++++++------------
 nbase/configure.ac |  2 +-
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/nbase/acinclude.m4 b/nbase/acinclude.m4
index 8bc7f68..d962d6a 100644
--- a/nbase/acinclude.m4
+++ b/nbase/acinclude.m4
@@ -11,7 +11,7 @@ dnl Note that if the system doesn't have gai_strerror(), we
 dnl can't use getaddrinfo() because we can't get strings
 dnl describing the error codes.
 dnl
-AC_DEFUN(APR_CHECK_WORKING_GETADDRINFO,[
+AC_DEFUN([APR_CHECK_WORKING_GETADDRINFO],[
   AC_CACHE_CHECK(for working getaddrinfo, ac_cv_working_getaddrinfo,[
   AC_TRY_RUN( [
 #ifdef HAVE_NETDB_H
@@ -54,7 +54,7 @@ if test "$ac_cv_working_getaddrinfo" = "yes"; then
   if test "$ac_cv_func_gai_strerror" != "yes"; then
     ac_cv_working_getaddrinfo="no"
   else
-    AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if getaddrinfo exists and works well enough for APR])
+    AC_DEFINE([HAVE_GETADDRINFO], [1], [Define if getaddrinfo exists and works well enough for APR])
   fi
 fi
 ])
@@ -62,7 +62,7 @@ fi
 dnl
 dnl check for working getnameinfo() -- from Apache 2.0.40
 dnl
-AC_DEFUN(APR_CHECK_WORKING_GETNAMEINFO,[
+AC_DEFUN([APR_CHECK_WORKING_GETNAMEINFO],[
   AC_CACHE_CHECK(for working getnameinfo, ac_cv_working_getnameinfo,[
   AC_TRY_RUN( [
 #ifdef HAVE_NETDB_H
@@ -113,11 +113,11 @@ int main(void) {
   ac_cv_working_getnameinfo="yes"
 ])])
 if test "$ac_cv_working_getnameinfo" = "yes"; then
-  AC_DEFINE(HAVE_GETNAMEINFO, 1, [Define if getnameinfo exists])
+  AC_DEFINE([HAVE_GETNAMEINFO], [1], [Define if getnameinfo exists])
 fi
 ])
 
-AC_DEFUN(APR_CHECK_SOCKADDR_IN6,[
+AC_DEFUN([APR_CHECK_SOCKADDR_IN6],[
 AC_CACHE_CHECK(for sockaddr_in6, ac_cv_define_sockaddr_in6,[
 AC_TRY_COMPILE([
 #ifdef HAVE_SYS_TYPES_H
@@ -143,7 +143,7 @@ else
 fi
 ])
 
-AC_DEFUN(CHECK_AF_INET6_DEFINE,[
+AC_DEFUN([CHECK_AF_INET6_DEFINE],[
 AC_CACHE_CHECK(for AF_INET6 definition, ac_cv_define_af_inet6,[
 AC_TRY_COMPILE([
 #ifdef HAVE_SYS_TYPES_H
@@ -166,13 +166,13 @@ int af = AF_INET6;
 
 if test "$ac_cv_define_af_inet6" = "yes"; then
   have_af_inet6=1
-  AC_DEFINE(HAVE_AF_INET6, 1, [Define if AF_INET6 is defined])
+  AC_DEFINE([HAVE_AF_INET6], [1], [AF_INET6 macro is defined])
 else
   have_af_inet6=0
 fi
 ])
 
-AC_DEFUN(APR_CHECK_SOCKADDR_STORAGE,[
+AC_DEFUN([APR_CHECK_SOCKADDR_STORAGE],[
 AC_CACHE_CHECK(for sockaddr_storage, ac_cv_define_sockaddr_storage,[
 AC_TRY_COMPILE([
 #ifdef HAVE_SYS_TYPES_H
@@ -195,21 +195,21 @@ struct sockaddr_storage sa;
 
 if test "$ac_cv_define_sockaddr_storage" = "yes"; then
   have_sockaddr_storage=1
-  AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [Define if struct sockaddr_storage exists])
+  AC_DEFINE([HAVE_SOCKADDR_STORAGE], [1], [struct sockaddr_storage is available])
 else
   have_sockaddr_storage=0
 fi
 ])
 
 dnl This test taken from GCC libjava.
-AC_DEFUN(CHECK_PROC_SELF_EXE,[
+AC_DEFUN([CHECK_PROC_SELF_EXE],[
   if test x"$cross_compiling" = x"no"; then
     AC_CHECK_FILES(/proc/self/exe, [
-      AC_DEFINE(HAVE_PROC_SELF_EXE, 1, [Define if you have /proc/self/exe])])
+      AC_DEFINE([HAVE_PROC_SELF_EXE], [1], [Define if you have /proc/self/exe])])
   else
     case $host in
       *-linux*)
-      AC_DEFINE(HAVE_PROC_SELF_EXE, 1, [Define if you have /proc/self/exe])
+      AC_DEFINE([HAVE_PROC_SELF_EXE], [1], [Define if you have /proc/self/exe])
       ;;
     esac
   fi
diff --git a/nbase/configure.ac b/nbase/configure.ac
index eb28fa4..375d0f9 100644
--- a/nbase/configure.ac
+++ b/nbase/configure.ac
@@ -60,7 +60,7 @@ AC_C_INLINE
 case "$host" in
   *-sgi-irix5* | *-sgi-irix6*)
     if test -z "$GCC"; then
-      AC_DEFINE(inline, )
+      AC_DEFINE([inline], [], [Disable inline keyword])
     fi
     ;;
 esac

debug log:

solving 4260e6129e ...
found 4260e6129e in https://yhetil.org/guix-patches/WSgbTIT-0EVw00x79M1C4IoJnu497WH90q_x9HrwP736-BdOVcs0KaKNx9tcSaZu3u7jA6G8tnr7tsS9eUcIwrh3_DziU2imKAVbzDkx0Xo=@protonmail.com/

applying [1/1] https://yhetil.org/guix-patches/WSgbTIT-0EVw00x79M1C4IoJnu497WH90q_x9HrwP736-BdOVcs0KaKNx9tcSaZu3u7jA6G8tnr7tsS9eUcIwrh3_DziU2imKAVbzDkx0Xo=@protonmail.com/
diff --git a/gnu/packages/patches/ncrack-fix-autotools-compat.patch b/gnu/packages/patches/ncrack-fix-autotools-compat.patch
new file mode 100644
index 0000000000..4260e6129e

1:59: trailing whitespace.
 
1:68: trailing whitespace.
 
1:75: trailing whitespace.
 
1:84: trailing whitespace.
 
1:91: trailing whitespace.
 
Checking patch gnu/packages/patches/ncrack-fix-autotools-compat.patch...
Applied patch gnu/packages/patches/ncrack-fix-autotools-compat.patch cleanly.
warning: squelched 1 whitespace error
warning: 6 lines add whitespace errors.

index at:
100644 4260e6129ec46775619dff0fa745648c80fb8830	gnu/packages/patches/ncrack-fix-autotools-compat.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).