auto-import changelog data from libselinux-1.15.1-1.src.rpm

Thu Jul 08 2004 Dan Walsh <dwalsh@redhat.com> 1.15.1-1
- Update to latest from NSA
- Add fix to only get old path if file_context file exists in old location
This commit is contained in:
cvsdist 2004-09-09 07:43:41 +00:00
parent df7994567e
commit c391d58b0b
4 changed files with 26 additions and 3 deletions

View File

@ -1 +1 @@
libselinux-1.14.1.tgz
libselinux-1.15.1.tgz

17
libselinux-rhat.patch Normal file
View File

@ -0,0 +1,17 @@
--- libselinux-1.15.1/src/selinux_config.c.rhat 2004-07-08 09:13:49.000000000 -0400
+++ libselinux-1.15.1/src/selinux_config.c 2004-07-08 09:18:47.110934853 -0400
@@ -91,9 +91,11 @@
FILE *cfg;
if (selinux_policyroot) return;
if (access(SELINUXDIR, F_OK) != 0) {
- selinux_policyroot = SECURITYDIR;
- active_file_paths = compat_file_paths;
- return;
+ if (access(SECURITYDIR "/selinux/file_contexts", F_OK) == 0) {
+ selinux_policyroot = SECURITYDIR;
+ active_file_paths = compat_file_paths;
+ return;
+ }
}
cfg = fopen(SELINUXCONFIG,"r");
if (cfg) {

View File

@ -1,10 +1,11 @@
Summary: SELinux library and simple utilities
Name: libselinux
Version: 1.14.1
Version: 1.15.1
Release: 1
License: Public domain (uncopyrighted)
Group: System Environment/Libraries
Source: http://www.nsa.gov/selinux/archives/libselinux-%{version}.tgz
Patch: libselinux-rhat.patch
Prefix: %{_prefix}
BuildRoot: %{_tmppath}/%{name}-buildroot
Provides: libselinux.so
@ -35,6 +36,7 @@ needed for developing SELinux applications.
%prep
%setup -q
%patch -p1 -b .rhat
%build
make
@ -69,6 +71,10 @@ rm -rf ${RPM_BUILD_ROOT}
%{_mandir}/man8/*
%changelog
* Thu Jul 8 2004 Dan Walsh <dwalsh@redhat.com> 1.15.1-1
- Update to latest from NSA
- Add fix to only get old path if file_context file exists in old location
* Wed Jun 30 2004 Dan Walsh <dwalsh@redhat.com> 1.14.1-1
- Update to latest from NSA

View File

@ -1 +1 @@
ad2875ad1d3b539a4f05004210e014b5 libselinux-1.14.1.tgz
18bb23feda3f076801cbf50c145bde45 libselinux-1.15.1.tgz