Fixed undefined symbol (bz 204296)

This commit is contained in:
Steve Dickson 2006-08-28 12:25:53 +00:00
parent 074ed6b97a
commit d478e05ba5
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,12 @@
--- libtirpc-0.1.7/tirpc/rpc/svc_auth.h.orig 2005-05-18 01:10:51.000000000 -0400
+++ libtirpc-0.1.7/tirpc/rpc/svc_auth.h 2006-08-28 08:13:37.801283000 -0400
@@ -54,6 +54,9 @@
caddr_t svc_ah_private;
} SVCAUTH;
+#define SVCAUTH_DESTROY(cred) ((*(cred)->svc_ah_ops->svc_ah_destroy)())
+#define svcauth_destroy(cred) ((*(cred)->svc_ah_ops->svc_ah_destroy)())
+
/*
* Server side authenticator
*/

View File

@ -1,6 +1,6 @@
Name: libtirpc
Version: 0.1.7
Release: 3%{?dist}
Release: 4%{?dist}
Summary: Transport Independent RPC Library
Group: System Environment/Libraries
License: GPL
@ -34,6 +34,7 @@ Patch1: libtirpc-0.1.7-netconfig.patch
Patch2: libtirpc-0.1.7-gssapi.patch
Patch3: libtirpc-0.1.7-svcauthnone.patch
Patch4: libtirpc-0.1.7-ppc64.patch
Patch5: libtirpc-0.1.7-svcauthdestroy.patch
Patch100: libtirpc-0.1.7-compile.patch
@ -48,6 +49,7 @@ developing programs which use the tirpc library.
%patch2 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch100 -p1
@ -123,6 +125,9 @@ rm -rf %{buildroot}
%{_includedir}/tirpc/un-namespace.h
%changelog
* Mon Aug 28 2006 Steve Dickson <steved@redhat.com> 0.1.7-4
- Fixed undefined symbol (bz 204296)
* Mon Aug 14 2006 Steve Dickson <steved@redhat.com> 0.1.7-3
- Added in svc_auth_none needed by the GSSAPI code.
- Added compile define for ppc64 archs