1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-02 04:49:02 +00:00

Build RPMs with OpenSSL support. nmap.spec.in says --with-openssl explicitly,

because I want it to fail if OpenSSL isn't available, but it doesn't do that
yet.
This commit is contained in:
david
2008-09-08 23:08:18 +00:00
parent da312ac02e
commit f3d8cf7674
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
# Nmap Changelog ($Id$); -*-text-*-
o RPMs are now built with OpenSSL. [David]
o Fixed an assertion failure where raw TCP timing ping probes were
wrongly used during a TCP connect scan:
nmap: scan_engine.cc:2843: UltraProbe* sendIPScanProbe(UltraScanInfo*,

View File

@@ -36,7 +36,7 @@ devices are also supported, including the Sharp Zaurus and the iPAQ.
%setup -q
%build
%configure --without-openssl --without-zenmap --with-libdnet=included --with-libpcap=included --with-libpcre=included --with-liblua=included
%configure --with-openssl --without-zenmap --with-libdnet=included --with-libpcap=included --with-libpcre=included --with-liblua=included
%if "%{static}" == "1"
make static
%else
@@ -63,6 +63,9 @@ gzip $RPM_BUILD_ROOT%{_mandir}/man1/* || :
%changelog
* Mon Sep 08 2008 David Fifield (david(a)bamsoftware.com)
- Build with --with-openssl rather than --without-openssl.
* Thu Nov 08 2007 David Fifield (david(a)bamsoftware.com)
- Split the zenmap subpackage into its own spec file.