09f7b3
Summary: Access control list utilities
09f7b3
Name: acl
09f7b3
Version: 2.2.53
09f7b3
Release: 1%{?dist}
09f7b3
BuildRequires: gawk
09f7b3
BuildRequires: gettext
09f7b3
BuildRequires: libattr-devel
09f7b3
BuildRequires: libtool
09f7b3
Requires: libacl = %{version}-%{release}
09f7b3
Source: https://download-mirror.savannah.gnu.org/releases/acl/acl-%{version}.tar.gz
09f7b3
09f7b3
License: GPLv2+
09f7b3
URL: https://savannah.nongnu.org/projects/acl
09f7b3
09f7b3
%description
09f7b3
This package contains the getfacl and setfacl utilities needed for
09f7b3
manipulating access control lists.
09f7b3
09f7b3
%package -n libacl
09f7b3
Summary: Dynamic library for access control list support
09f7b3
License: LGPLv2+
09f7b3
Group: System Environment/Libraries
09f7b3
Conflicts: filesystem < 3
09f7b3
09f7b3
%description -n libacl
09f7b3
This package contains the libacl.so dynamic library which contains
09f7b3
the POSIX 1003.1e draft standard 17 functions for manipulating access
09f7b3
control lists.
09f7b3
09f7b3
%package -n libacl-devel
09f7b3
Summary: Files needed for building programs with libacl
09f7b3
License: LGPLv2+
09f7b3
Group: Development/Libraries
09f7b3
Requires: libacl = %{version}-%{release}, libattr-devel
09f7b3
09f7b3
%description -n libacl-devel
09f7b3
This package contains header files and documentation needed to develop
09f7b3
programs which make use of the access control list programming interface
09f7b3
defined in POSIX 1003.1e draft standard 17.
09f7b3
09f7b3
%prep
09f7b3
%autosetup -p1
09f7b3
09f7b3
%build
09f7b3
%configure
09f7b3
09f7b3
# uncomment to turn on optimizations
09f7b3
# sed -i 's/-O2/-O0/' libtool include/builddefs
09f7b3
# unset CFLAGS
09f7b3
09f7b3
make %{?_smp_mflags}
09f7b3
09f7b3
%check
09f7b3
if ./setfacl -m "u:$(id -u):rwx" .; then
09f7b3
    if test 0 = "$(id -u)"; then
09f7b3
        # test/root/permissions.test requires the 'daemon' user to be a member
09f7b3
        # of the 'bin' group in order not to fail.  Prevent the test from
09f7b3
        # running if we detect that its requirements are not met (#1085389).
09f7b3
        if id -nG daemon | { ! grep bin >/dev/null; }; then
09f7b3
	    sed -e 's|test/root/permissions.test||' \
09f7b3
	        -i test/Makemodule.am Makefile.in Makefile
09f7b3
	fi
09f7b3
09f7b3
	# test/root/setfacl.test fails if 'bin' user cannot access build dir
09f7b3
	if ! runuser -u bin -- "${PWD}/setfacl" --version; then
09f7b3
	    sed -e 's|test/root/setfacl.test||' \
09f7b3
	        -i test/Makemodule.am Makefile.in Makefile
09f7b3
	fi
09f7b3
    fi
09f7b3
09f7b3
    # run the upstream test-suite
09f7b3
    make check || exit $?
09f7b3
else
09f7b3
    echo '*** ACLs are probably not supported by the file system,' \
09f7b3
         'the test-suite will NOT run ***'
09f7b3
fi
09f7b3
09f7b3
%install
09f7b3
make install DESTDIR=$RPM_BUILD_ROOT
09f7b3
09f7b3
# get rid of libacl.a and libacl.la
09f7b3
rm -f $RPM_BUILD_ROOT%{_libdir}/libacl.a
09f7b3
rm -f $RPM_BUILD_ROOT%{_libdir}/libacl.la
09f7b3
09f7b3
chmod 0755 $RPM_BUILD_ROOT/%{_libdir}/libacl.so.*.*.*
09f7b3
09f7b3
# drop already installed documentation, we will use an RPM macro to install it
09f7b3
rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}*
09f7b3
09f7b3
%find_lang %{name}
09f7b3
09f7b3
%ldconfig_scriptlets -n libacl
09f7b3
09f7b3
%files -f %{name}.lang
09f7b3
%{!?_licensedir:%global license %%doc}
09f7b3
%license doc/COPYING*
09f7b3
%{_bindir}/chacl
09f7b3
%{_bindir}/getfacl
09f7b3
%{_bindir}/setfacl
09f7b3
%{_mandir}/man1/chacl.1*
09f7b3
%{_mandir}/man1/getfacl.1*
09f7b3
%{_mandir}/man1/setfacl.1*
09f7b3
%{_mandir}/man5/acl.5*
09f7b3
09f7b3
%files -n libacl-devel
09f7b3
%{_libdir}/libacl.so
09f7b3
%{_libdir}/pkgconfig/*.pc
09f7b3
%{_includedir}/acl
09f7b3
%{_includedir}/sys/acl.h
09f7b3
%{_mandir}/man3/acl_*
09f7b3
09f7b3
%files -n libacl
09f7b3
%{_libdir}/libacl.so.*
09f7b3
09f7b3
%changelog
09f7b3
* Mon Jul 02 2018 Kamil Dudka <kdudka@redhat.com> 2.2.53-1
09f7b3
- new upstream release
09f7b3
09f7b3
* Tue Mar 13 2018 Kamil Dudka <kdudka@redhat.com> 2.2.52-21
09f7b3
- update link to POSIX.1e draft in acl(5) man page (#1510527)
09f7b3
09f7b3
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-20
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
09f7b3
09f7b3
* Sun Feb 04 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.2.52-19
09f7b3
- Switch to %%ldconfig_scriptlets
09f7b3
09f7b3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-18
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
09f7b3
09f7b3
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-17
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
09f7b3
09f7b3
* Mon Jul 24 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-16
09f7b3
- fix test-suite failure with perl-5.26.0 (#1473845)
09f7b3
- update URL of the upstream source tarball
09f7b3
09f7b3
* Thu May 18 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-15
09f7b3
- setfacl.1: document the meaning of '-' in perms (#1337039)
09f7b3
- avoid failure of %%check when building as root (#1085389)
09f7b3
- apply patches automatically to ease maintenance
09f7b3
09f7b3
* Wed May 17 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-14
09f7b3
- drop obsolete BuildRoot and Group tags
09f7b3
- fix spurious acl_check() failure on setfacl --restore (#1451826)
09f7b3
09f7b3
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-13
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
09f7b3
09f7b3
* Fri Feb 03 2017 Kamil Dudka <kdudka@redhat.com> 2.2.52-12
09f7b3
- update project URL (#1418474)
09f7b3
09f7b3
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.52-11
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
09f7b3
09f7b3
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 2.2.52-10
09f7b3
- Remove bizarre 12 year old libtool invocation workaround that prevented
09f7b3
  hardened cflags working
09f7b3
09f7b3
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-9
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
09f7b3
09f7b3
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.2.52-8
09f7b3
- Rebuilt for
09f7b3
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
09f7b3
09f7b3
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-7
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
09f7b3
09f7b3
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 2.2.52-6
09f7b3
- tag licenses properly
09f7b3
09f7b3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-5
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
09f7b3
09f7b3
* Fri Nov 01 2013 Kamil Dudka <kdudka@redhat.com> 2.2.52-4
09f7b3
- fix SIGSEGV of getfacl -e on overly long group name
09f7b3
09f7b3
* Fri Aug 09 2013 Kamil Dudka <kdudka@redhat.com> 2.2.52-3
09f7b3
- drop a docdir-related patch to fix a packaging failure (#993659)
09f7b3
09f7b3
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.52-2
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
09f7b3
09f7b3
* Mon May 20 2013 Kamil Dudka <kdudka@redhat.com> 2.2.52-1
09f7b3
- new upstream release, drop applied patches
09f7b3
- drop workarounds that are no longer necessary
09f7b3
09f7b3
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.51-9
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
09f7b3
09f7b3
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> 2.2.51-8
09f7b3
- fix specfile issues reported by the fedora-review script
09f7b3
09f7b3
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.51-7
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
09f7b3
09f7b3
* Wed May 02 2012 Kamil Dudka <kdudka@redhat.com> 2.2.51-6
09f7b3
- do not mention static libraries in the summary of libacl{,-devel} (#817952)
09f7b3
09f7b3
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.2.51-5
09f7b3
- add filesystem guard
09f7b3
09f7b3
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.2.51-4
09f7b3
- install everything in /usr
09f7b3
  https://fedoraproject.org/wiki/Features/UsrMove
09f7b3
09f7b3
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.51-3
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
09f7b3
09f7b3
* Fri May 06 2011 Kamil Dudka <kdudka@redhat.com> 2.2.51-2
09f7b3
- update project URL (#699058)
09f7b3
09f7b3
* Thu Apr 21 2011 Kamil Dudka <kdudka@redhat.com> 2.2.51-1
09f7b3
- new upstream release
09f7b3
09f7b3
* Tue Apr 19 2011 Kamil Dudka <kdudka@redhat.com> 2.2.50-1
09f7b3
- new upstream release
09f7b3
09f7b3
* Wed Apr 06 2011 Kamil Dudka <kdudka@redhat.com> 2.2.49-11
09f7b3
- add function acl_extended_file_nofollow() (#692982)
09f7b3
09f7b3
* Tue Mar 29 2011 Kamil Dudka <kdudka@redhat.com> 2.2.49-10
09f7b3
- fix typos in setfacl(1) man page (#675451)
09f7b3
09f7b3
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.49-9
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
09f7b3
09f7b3
* Thu Jul 08 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-8
09f7b3
- remove dependency of libacl-devel on nfs-utils-lib and openldap
09f7b3
09f7b3
* Tue May 25 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-7
09f7b3
- let acl depend on the same version of libacl (#595674)
09f7b3
09f7b3
* Wed Mar 24 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-6
09f7b3
- prevent setfacl --restore from SIGSEGV on malformed restore file (#576550)
09f7b3
09f7b3
* Wed Mar 10 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-5
09f7b3
- run the test-suite if possible
09f7b3
09f7b3
* Tue Jan 19 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-4
09f7b3
- do not package a static library (#556036)
09f7b3
- remove multilib patch no longer useful
09f7b3
- cleanup in BuildRequires
09f7b3
09f7b3
* Tue Jan 05 2010 Kamil Dudka <kdudka@redhat.com> 2.2.49-3
09f7b3
- upstream patch for setfacl --restore SUID/SGID bits handling (#467936)
09f7b3
09f7b3
* Sat Dec 26 2009 Kamil Dudka <kdudka@redhat.com> 2.2.49-2
09f7b3
- tweaked setfacl tree walk flags (#488674), thanks to Markus Steinborn
09f7b3
09f7b3
* Sun Dec 20 2009 Kamil Dudka <kdudka@redhat.com> 2.2.49-1
09f7b3
- new upstream bugfix release
09f7b3
- big cleanup in patches
09f7b3
09f7b3
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.47-5
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
09f7b3
09f7b3
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.47-4
09f7b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
09f7b3
09f7b3
* Thu Jul 31 2008 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.47-3
09f7b3
- little improvement to params patch
09f7b3
- Resolves: #457244
09f7b3
09f7b3
* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.2.47-2
09f7b3
- rework params patch to apply with fuzz=0
09f7b3
- fix license tag
09f7b3
09f7b3
* Tue Feb 12 2008 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.47-1
09f7b3
- new upstream version
09f7b3
09f7b3
* Mon Jan 28 2008 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.45-3
09f7b3
- Fixed segfault when using only "--" as parameter
09f7b3
- Resolves: #430458
09f7b3
09f7b3
* Wed Nov  7 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.45-2
09f7b3
- Fixed setfacl exitcodes
09f7b3
- Resolves: #368451
09f7b3
09f7b3
* Wed Oct 31 2007 Jiri Moskovcak <jmoskovc@redhat.com> - 2.2.45-1
09f7b3
- New version
09f7b3
- dropped walk patch
09f7b3
09f7b3
* Thu Sep 20 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.39-10
09f7b3
- Rewriten path_max patch to support long UTF8 names
09f7b3
- Resolves #287701, #183181
09f7b3
09f7b3
* Fri Aug 31 2007 Steve Dickson <steved@redhat.com> - 2.2.39-9
09f7b3
- Removed NFS4 ACL patch since it was rejected by upstream.
09f7b3
09f7b3
* Thu Aug 30 2007 Jeremy Katz <katzj@redhat.com> - 2.2.39-8
09f7b3
- disable nfs patch; linking libacl against libs in /usr will lead to breakage
09f7b3
09f7b3
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.2.39-7
09f7b3
- Build Require gawk
09f7b3
09f7b3
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.2.39-6
09f7b3
- Rebuild for selinux ppc32 issue.
09f7b3
09f7b3
* Mon Aug 27 2007 Steve Dickson <steved@redhat.com>  2.2.39-5
09f7b3
- Added NFS v4 ACL support
09f7b3
09f7b3
* Thu Jul 26 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.39-4.1
09f7b3
- Updated man page for getfacl
09f7b3
09f7b3
* Wed Jul 25 2007 Jiri Moskovcak <jmoskovc@redhat.com> 2.2.39-4
09f7b3
- Added support fort short params to getfacl
09f7b3
- Resolves: #204087
09f7b3
09f7b3
* Wed Mar 21 2007 Thomas Woerner <twoerner@redhat.com> 2.2.39-3.1
09f7b3
- new improved walk patch with fixed getfacl exit code (rhbz#232884)
09f7b3
09f7b3
* Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 2.2.39-3
09f7b3
- fix buildroot
09f7b3
- remove trailing dot from summary
09f7b3
- -devel requires same version of libacl
09f7b3
- escape macro in changelog
09f7b3
- make .so symlink relative
09f7b3
09f7b3
* Thu Feb 22 2007 Steve Grubb <sgrubb@redhat.com> 2.2.39-2
09f7b3
- Apply patch to make order consistent.
09f7b3
09f7b3
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.39-1.1
09f7b3
- rebuild
09f7b3
09f7b3
* Wed Jul  5 2006 Thomas Woerner <twoerner@redhat.com> 2.2.39-1
09f7b3
- new version 2.2.39
09f7b3
- fixed usage of long UTF-8 filenames (#183181)
09f7b3
  Thanks to Andrey for the initial patch.
09f7b3
09f7b3
* Wed Jun  7 2006 Jeremy Katz <katzj@redhat.com> - 2.2.34-2
09f7b3
- rebuild for -devel deps
09f7b3
09f7b3
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.34-1.2
09f7b3
- bump again for double-long bug on ppc(64)
09f7b3
09f7b3
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.34-1.1
09f7b3
- rebuilt for new gcc4.1 snapshot and glibc changes
09f7b3
09f7b3
* Fri Feb  3 2006 Thomas Woerner <twoerner@redhat.com> 2.2.34-1
09f7b3
- new version 2.2.34
09f7b3
09f7b3
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
09f7b3
- rebuilt
09f7b3
09f7b3
* Tue Dec  6 2005 Thomas Woerner <twoerner@redhat.com> 2.2.32-2.1
09f7b3
- fixed permissions of libacl
09f7b3
09f7b3
* Tue Dec  6 2005 Thomas Woerner <twoerner@redhat.com> 2.2.32-2
09f7b3
- spec file cleanup
09f7b3
- mark po files as lang specific
09f7b3
09f7b3
* Sun Nov 06 2005 Florian La Roche <laroche@redhat.com>
09f7b3
- 2.2.32
09f7b3
09f7b3
* Wed Sep 28 2005 Than Ngo <than@redhat.com> 2.2.31-1
09f7b3
- update to 2.2.31
09f7b3
09f7b3
* Wed Sep 28 2005 Than Ngo <than@redhat.com> 2.2.23-9
09f7b3
- get rid of *.la files
09f7b3
- remove duplicate doc files
09f7b3
09f7b3
* Wed Feb  9 2005 Stephen C. Tweedie <sct@redhat.com> 2.2.23-6
09f7b3
- Rebuild
09f7b3
09f7b3
* Thu Sep 16 2004 Jeremy Katz <katzj@redhat.com> - 2.2.23-5
09f7b3
- make the libs executable so that we find their dependencies (#132696)
09f7b3
09f7b3
* Fri Sep 10 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.23-4
09f7b3
- libacl-devel Requires: libattr-devel for libattr.la
09f7b3
09f7b3
* Fri Sep 10 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.23-3
09f7b3
- Requires libtool >= 1.5 for building
09f7b3
09f7b3
* Thu Aug 19 2004 Phil Knirsch <pknirsch@redhat.com> 2.2.23-2
09f7b3
- Make libacl.so.* executable.
09f7b3
09f7b3
* Thu Aug 19 2004 Phil Knirsch <pknirsch@redhat.com> 2.2.23-1
09f7b3
- Update to latest upstream version.
09f7b3
09f7b3
* Sun Aug  8 2004 Alan Cox <alan@redhat.com> 2.2.7-7
09f7b3
- Close bug #125300 (Steve Grubb: build requires libtool,gettext)
09f7b3
09f7b3
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
09f7b3
- rebuilt
09f7b3
09f7b3
* Wed Mar 31 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.7-5
09f7b3
- Add missing %%defattr
09f7b3
09f7b3
* Tue Mar 30 2004 Stephen C. Tweedie <sct@redhat.com> 2.2.7-3
09f7b3
- Add /usr/include/acl to files manifest
09f7b3
- Fix location of doc files, add main doc dir to files manifest
09f7b3
09f7b3
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
09f7b3
- rebuilt
09f7b3
09f7b3
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
09f7b3
- rebuilt
09f7b3
09f7b3
* Tue Aug  5 2003 Elliot Lee <sopwith@redhat.com> 2.2.7-2
09f7b3
- Fix libtool invocation
09f7b3
09f7b3
* Tue Jun  3 2003 Stephen C. Tweedie <sct@redhat.com> 2.2.7-1
09f7b3
- Update to acl-2.2.7
09f7b3
09f7b3
* Wed Mar 26 2003 Michael K. Johnson <johnsonm@redhat.com> 2.2.3-2
09f7b3
- include patch from Jay Berkenbilt to print better error messages
09f7b3
09f7b3
* Tue Jan 28 2003 Michael K. Johnson <johnsonm@redhat.com> 2.2.3-1
09f7b3
- udpate/rebuild
09f7b3
09f7b3
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 2.0.11-7
09f7b3
- set execute bits on library so that requires are generated.
09f7b3
09f7b3
* Tue Nov 19 2002 Elliot Lee <sopwith@redhat.com> 2.0.11-5
09f7b3
- Correct patch in previous fix so that shared libraries go in /lib* 
09f7b3
  instead of /usr/lib*
09f7b3
09f7b3
* Tue Nov 19 2002 Elliot Lee <sopwith@redhat.com> 2.0.11-4
09f7b3
- Fix multilibbing
09f7b3
09f7b3
* Wed Sep 11 2002 Than Ngo <than@redhat.com> 2.0.11-3
09f7b3
- Added fix to install libs in correct directory on 64bit machine
09f7b3
09f7b3
* Thu Aug 08 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.11-2
09f7b3
- Made the package only own the one directory that is unique to it:
09f7b3
  /usr/include/acl
09f7b3
09f7b3
* Mon Jun 24 2002 Michael K. Johnson <johnsonm@redhat.com> 2.0.11-1
09f7b3
- Initial Red Hat package
09f7b3
  Made as few changes as possible relative to upstream packaging to
09f7b3
  make it easier to maintain long-term.  This means that some of
09f7b3
  the techniques used here are definitely not standard Red Hat
09f7b3
  techniques.  If you are looking for an example package to fit
09f7b3
  into Red Hat Linux transparently, this would not be the one to
09f7b3
  pick.
09f7b3
- acl-devel -> libacl-devel