diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-11 19:23:53 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-11 19:23:53 +0000 |
commit | 844f69b98388969ab7e2d7f603f27d93e1927bf7 (patch) | |
tree | 9d01e53ac2a1c73351db228fd0a7f6f46b0b2e01 /net/nmap | |
parent | 45acd6da92e35c98555c0add8c12e6a79311390a (diff) | |
download | pkgsrc-844f69b98388969ab7e2d7f603f27d93e1927bf7.tar.gz |
Fixed "test ==".
Diffstat (limited to 'net/nmap')
-rw-r--r-- | net/nmap/distinfo | 3 | ||||
-rw-r--r-- | net/nmap/patches/patch-ac | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/nmap/distinfo b/net/nmap/distinfo index 021dc90bf3e..21d4796f4d4 100644 --- a/net/nmap/distinfo +++ b/net/nmap/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.33 2006/06/25 14:29:14 salo Exp $ +$NetBSD: distinfo,v 1.34 2006/10/11 19:23:53 rillig Exp $ SHA1 (nmap-4.11.tar.bz2) = 53c6ef07fd6b923a403a7af84bcca141df6c079a RMD160 (nmap-4.11.tar.bz2) = efd9d6f8f34c30fcc985a0705d17a04c709a280a Size (nmap-4.11.tar.bz2) = 2130457 bytes SHA1 (patch-aa) = f3834d896b11a93c46b44c272106adf25aa296df SHA1 (patch-ab) = ea3fc8ec22a6331a1c2dc512f1d166970beca6c3 +SHA1 (patch-ac) = ac9f3ada1a3b431665225ce778b90723ddf523c8 SHA1 (patch-ai) = f93dd35a9427f5619d3320955a1f7d132930ef66 diff --git a/net/nmap/patches/patch-ac b/net/nmap/patches/patch-ac new file mode 100644 index 00000000000..e2a4b6ae251 --- /dev/null +++ b/net/nmap/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.5 2006/10/11 19:23:53 rillig Exp $ + +--- libpcre/configure.orig 2006-10-11 21:21:25.000000000 +0200 ++++ libpcre/configure 2006-10-11 21:22:47.000000000 +0200 +@@ -3450,7 +3450,7 @@ fi; + # Check whether --enable-ebcdic or --disable-ebcdic was given. + if test "${enable_ebcdic+set}" = set; then + enableval="$enable_ebcdic" +- if test "$enableval" == "yes"; then ++ if test "$enableval" = "yes"; then + EBCDIC=-DEBCDIC=1 + fi + |