- allow global macro defines to override system macros.

- correct spelling error in default config files missed by previous update.
- misc correctness and a memory leak fix.
This commit is contained in:
ikent 2006-06-27 09:33:56 +00:00
parent 8dd7668ef1
commit 454eda90ea

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.0_beta5 %define version 5.0.0_beta5
%define release 4 %define release 5
Version: %{version} Version: %{version}
Release: %{release} Release: %{release}
Epoch: 1 Epoch: 1
@ -22,6 +22,9 @@ Patch8: autofs-5.0.0_beta5-ldap-default-auth.patch
Patch9: autofs-5.0.0_beta5-parse-old-style-dn.patch Patch9: autofs-5.0.0_beta5-parse-old-style-dn.patch
Patch10: autofs-5.0.0_beta5-get-dn-update.patch Patch10: autofs-5.0.0_beta5-get-dn-update.patch
Patch11: autofs-5.0.0_beta5-compile-warnings.patch Patch11: autofs-5.0.0_beta5-compile-warnings.patch
Patch12: autofs-5.0.0_beta5-override-system-macros.patch
Patch13: autofs-5.0.0_beta5-mapclass-update.patch
Patch14: autofs-5.0.0_beta5-misc-fixes.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
@ -71,6 +74,9 @@ echo %{version}-%{release} > .version
%patch9 -p1 %patch9 -p1
%patch10 -p1 %patch10 -p1
%patch11 -p1 %patch11 -p1
%patch12 -p1
%patch13 -p1
%patch14 -p1
%build %build
#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir} #CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir}
@ -127,6 +133,12 @@ exit 0
%{_libdir}/autofs/* %{_libdir}/autofs/*
%changelog %changelog
* Tue Jun 27 2006 Ian Kent <ikent@redhat.com> - 5.0.0_beta5-5
- allow global macro defines to override system macros.
- correct spelling error in default config files missed by
previous update.
- misc correctness and a memory leak fix.
* Mon Jun 26 2006 Ian Kent <ikent@redhat.com> - 5.0.0_beta5-4 * Mon Jun 26 2006 Ian Kent <ikent@redhat.com> - 5.0.0_beta5-4
- correct spelling error in default config. - correct spelling error in default config.
- fix default auth config not being installed. - fix default auth config not being installed.