summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2016-09-30 11:15:18 +0200
committerJeroen Roovers <jer@gentoo.org>2016-09-30 11:15:18 +0200
commit75f050b5a4f4a5050e94e872a2fdea93e92f9174 (patch)
tree0ae86dc3ca9c7a1de9a16bb47838f0b6bd2aa6f2 /net-analyzer/nmap/files
parentnet-analyzer/nmap: Version bump. (diff)
downloadgentoo-75f050b5a4f4a5050e94e872a2fdea93e92f9174.tar.gz
gentoo-75f050b5a4f4a5050e94e872a2fdea93e92f9174.tar.bz2
gentoo-75f050b5a4f4a5050e94e872a2fdea93e92f9174.zip
net-analyzer/nmap: Old.
Package-Manager: portage-2.3.1
Diffstat (limited to 'net-analyzer/nmap/files')
-rw-r--r--net-analyzer/nmap/files/nmap-7.25-EC.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/net-analyzer/nmap/files/nmap-7.25-EC.patch b/net-analyzer/nmap/files/nmap-7.25-EC.patch
deleted file mode 100644
index fff56799873c..000000000000
--- a/net-analyzer/nmap/files/nmap-7.25-EC.patch
+++ /dev/null
@@ -1,38 +0,0 @@
- - Check for EVP_PKEY_get1_EC_KEY
- - Comment out inappropriate AC_CONFIG_SUBDIRS
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -387,6 +387,12 @@
- AC_MSG_WARN([Failed to find libssl so OpenSSL will not be used. If it is installed you can try the --with-openssl=DIR argument]) ],
- [ -lcrypto ])
- fi
-+
-+ if test "$use_openssl" = "yes"; then
-+ AC_CHECK_LIB(crypto, EVP_PKEY_get1_EC_KEY,
-+ [AC_DEFINE(HAVE_EVP_PKEY_EC, 1, [Have EVP_PKEY_get1_EC_KEY])],
-+ [AC_MSG_WARN([Disabling support for EC crypto])])
-+ fi
- fi
-
- OPENSSL_LIBS=
-@@ -516,7 +522,7 @@
-
- # If we still don't have it, we use our own
- if test $have_pcre != yes ; then
-- AC_CONFIG_SUBDIRS( libpcre )
-+# AC_CONFIG_SUBDIRS( libpcre )
- CPPFLAGS="-I\$(top_srcdir)/$LIBPCREDIR $CPPFLAGS"
- LIBPCRE_LIBS="$LIBPCREDIR/libpcre.a"
- PCRE_BUILD="build-pcre"
---- a/nse_ssl_cert.cc
-+++ b/nse_ssl_cert.cc
-@@ -434,7 +434,7 @@
- }
-
- int lua_push_ecdhparams(lua_State *L, EVP_PKEY *pubkey) {
--#ifdef EVP_PKEY_EC
-+#ifdef HAVE_EVP_PKEY_EC
- EC_KEY *ec_key = EVP_PKEY_get1_EC_KEY(pubkey);
- const EC_GROUP *group = EC_KEY_get0_group(ec_key);
- int nid;