- Fixed the ssl patch so it can now compile --without-ssl

This commit is contained in:
Paul Wouters 2009-07-13 20:34:47 +00:00
parent c18fed85ee
commit 2bba76b785
2 changed files with 13 additions and 5 deletions

Binary file not shown.

View File

@ -1,7 +1,7 @@
Summary: Lowlevel DNS(SEC) library with API
Name: ldns
Version: 1.6.0
Release: 2%{?dist}
Release: 4%{?dist}
License: BSD
Url: http://www.nlnetlabs.nl/%{name}/
Source: http://www.nlnetlabs.nl/downloads/%{name}-%{version}.tar.gz
@ -9,7 +9,7 @@ Patch0: ldns-ssl.patch
Group: System Environment/Libraries
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libtool, autoconf, automake, gcc-c++, doxygen,
BuildRequires: perl, libpcap-devel, openssl-devel
BuildRequires: perl, libpcap-devel
%description
ldns is a library with the aim to simplify DNS programing in C. All
@ -35,10 +35,10 @@ The devel package contains the ldns library and the include files
%patch0 -p1
%build
%configure --disable-rpath --with-sha2
%configure --disable-rpath --with-sha2 --without-ssl
make %{?_smp_mflags}
(cd drill ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ )
(cd examples ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ )
(cd drill ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ --without-ssl)
(cd examples ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ --without-ssl)
( cd drill ; make %{?_smp_mflags} )
( cd examples ; make %{?_smp_mflags} )
make %{?_smp_mflags} doc
@ -90,6 +90,14 @@ rm -rf %{buildroot}
%postun -p /sbin/ldconfig
%changelog
* Mon Jul 13 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-4
- Fixed the ssl patch so it can now compile --without-ssl
* Sat Jul 11 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-3
- Added patch to compile with --without-ssl
- Removed openssl dependancies
- Recompiled with --without-ssl
* Sat Jul 11 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-2
- Updated to 1.6.0
- (did not yet compile with --without-ssl due to compile failures)