- Update patch for changed semantics of mkdir in recent kernels.

- fix macro table locking.
- fix nsswitch parser locking.
- allow only one master map read task at a time.
- fix misc memory leaks.
This commit is contained in:
ikent 2006-10-30 03:55:26 +00:00
parent 6ae1eaca1f
commit 57fee6bdfa

View File

@ -4,7 +4,7 @@
Summary: A tool for automatically mounting and unmounting filesystems. Summary: A tool for automatically mounting and unmounting filesystems.
Name: autofs Name: autofs
%define version 5.0.1 %define version 5.0.1
%define release 0.rc2.19 %define release 0.rc2.20
Version: %{version} Version: %{version}
Release: %{release} Release: %{release}
Epoch: 1 Epoch: 1
@ -35,6 +35,11 @@ Patch20: autofs-5.0.1-rc2-numeric-ldap-host-name.patch
Patch21: autofs-5.0.1-rc2-get_query_dn-subtree-2.patch Patch21: autofs-5.0.1-rc2-get_query_dn-subtree-2.patch
Patch22: autofs-5.0.1-rc2-ldap-allow-extra-attrs.patch Patch22: autofs-5.0.1-rc2-ldap-allow-extra-attrs.patch
Patch23: autofs-5.0.1-rc2-dont-create-remote-dirs.patch Patch23: autofs-5.0.1-rc2-dont-create-remote-dirs.patch
Patch24: autofs-5.0.1-rc2-fix-master-parse-shift-reduce.patch
Patch25: autofs-5.0.1-rc2-macro-table-locking.patch
Patch26: autofs-5.0.1-rc2-nsswitch-parser-locking.patch
Patch27: autofs-5.0.1-rc2-one-master-map-read-only.patch
Patch28: autofs-5.0.1-rc2-misc-memory-leaks.patch
Buildroot: /var/tmp/autofs-tmp Buildroot: /var/tmp/autofs-tmp
BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel
Prereq: chkconfig Prereq: chkconfig
@ -98,6 +103,11 @@ echo %{version}-%{release} > .version
%patch21 -p1 %patch21 -p1
%patch22 -p1 %patch22 -p1
%patch23 -p1 %patch23 -p1
%patch24 -p1
%patch25 -p1
%patch26 -p1
%patch27 -p1
%patch28 -p1
%build %build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir} #CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -154,6 +164,13 @@ exit 0
%{_libdir}/autofs/* %{_libdir}/autofs/*
%changelog %changelog
* Mon Oct 30 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc2.20
- Update patch for changed semantics of mkdir in recent kernels.
- fix macro table locking.
- fix nsswitch parser locking.
- allow only one master map read task at a time.
- fix misc memory leaks.
* Wed Oct 25 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc2.19 * Wed Oct 25 2006 Ian Kent <ikent@redhat.com> - 5.0.1-0.rc2.19
- deal with changed semantics of mkdir in recent kernels. - deal with changed semantics of mkdir in recent kernels.