]> git.pld-linux.org Git - packages/libtirpc.git/blame - libtirpc-compile.patch
- A couple ntohs() were needed in bindresvport_sa()
[packages/libtirpc.git] / libtirpc-compile.patch
CommitLineData
23347404
JR
1--- libtirpc-0.1.7/src/Makefile.am.orig 2005-05-18 01:10:50.000000000 -0400
2+++ libtirpc-0.1.7/src/Makefile.am 2006-08-09 15:15:31.000000000 -0400
3@@ -11,7 +11,7 @@ INCLUDES = -I../tirpc -DPORTMAP -DINET6
4
5 lib_LTLIBRARIES = libtirpc.la
6
7-libtirpc_la_LDFLAGS = -lnsl -lpthread
8+libtirpc_la_LDFLAGS = -lnsl -lpthread -version-info 1:7:0
9
10 libtirpc_la_SOURCES = auth_none.c auth_unix.c authunix_prot.c bindresvport.c clnt_bcast.c \
11 clnt_dg.c clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c \
12--- libtirpc-0.1.7/src/svc_auth_gss.c.orig 2005-05-18 01:10:50.000000000 -0400
13+++ libtirpc-0.1.7/src/svc_auth_gss.c 2006-08-09 15:15:31.000000000 -0400
14@@ -382,7 +382,7 @@ _svcauth_gss(struct svc_req *rqst, struc
15 return (AUTH_FAILED);
16 }
17 auth->svc_ah_ops = &svc_auth_gss_ops;
18- SVCAUTH_PRIVATE(auth) = gd;
19+ auth->svc_ah_private = (caddr_t) gd;
20 rqst->rq_xprt->xp_auth = auth;
21 }
22 else gd = SVCAUTH_PRIVATE(rqst->rq_xprt->xp_auth);
23--- libtirpc-0.1.7/configure.in.orig 2005-05-18 01:10:50.000000000 -0400
24+++ libtirpc-0.1.7/configure.in 2006-08-09 15:15:31.000000000 -0400
25@@ -1,6 +1,6 @@
26
27-AC_INIT(libtirpc, 0.1.5)
28-AM_INIT_AUTOMAKE(libtirpc, 0.1.5)
29+AC_INIT(libtirpc, 0.1.7)
30+AM_INIT_AUTOMAKE(libtirpc, 0.1.7)
31 AM_MAINTAINER_MODE
32 AC_CONFIG_SRCDIR([src/auth_des.c])
33
34--- libtirpc-0.1.7/Makefile.am.orig 2005-05-18 01:10:50.000000000 -0400
35+++ libtirpc-0.1.7/Makefile.am 2006-08-09 15:15:31.000000000 -0400
36@@ -44,5 +44,5 @@ nobase_include_HEADERS = tirpc/un-namesp
37 tirpc/rpc/auth_des.h
38
39 install-exec-local:
40- cp -p ./doc/etc_netconfig /etc/netconfig
41- chmod 0644 /etc/netconfig
42+ cp -p ./doc/etc_netconfig $(DESTDIR)/etc/netconfig
43+ chmod 0644 $(DESTDIR)/etc/netconfig
This page took 0.025365 seconds and 4 git commands to generate.