Dirk Mueller
06dba6d951
- 005-missing-includes.patch: add missing includes to make headers compatible to sunrpc. - Update to version 1.0.2 - 002-old-automake.patch: not needed anymore - 005-libtirpc-1.0.2-rc1.patch: dropped - 006-Remove-old-meanwhile-wrong-comment-about-FD_SETSIZE-.patch: removed, merged upstream - 007-Change-rtime-function-to-use-poll-instead-of-select.patch: removed, merged upstream - 008-Add-parameters-to-local-prototypes-to-fix-compiler-w.patch: removed, merged upstream - 009-makefd_xprt-checks-that-the-filedesriptor-is-lower-t.patch: removed, merged upstream - 010-The-goto-again-statement-was-an-left-over-from-the-p.patch: removed, merged upstream - 012-libtirpc-needs-rpcsvc-nis.h-for-compiling-but-does-n.patch: removed, merged upstream - 013-If-we-don-t-compile-in-YP-support-don-t-include-YP-h.patch: removed, merged upstream - 014-Add-des_crypt.c-and-des_impl.c-to-become-independent.patch: removed, merged upstream - 015-Fix-includes-to-compile-without-deprecated-glibc-fun.patch: removed, merged upstream - patch6_7.diff: obsolete - Replace explicit_bzero.patch with 004-replace-bzero-with-memset.patch from git - Rename libtirpc-new-path-rpcbindsock.patch to 001-new-rpcbindsock-path.patch - 003-rpc-types.patch: Add some typedefs to rpc/types.h to allow applications be compiled with -std=iso9899:1990 OBS-URL: https://build.opensuse.org/request/show/541890 OBS-URL: https://build.opensuse.org/package/show/Base:System/libtirpc?expand=0&rev=63
30 lines
750 B
Diff
30 lines
750 B
Diff
From 75a49eabb3c71ee8f4a579df4e0199694d086e28 Mon Sep 17 00:00:00 2001
|
|
From: Thorsten Kukuk <kukuk@thkukuk.de>
|
|
Date: Tue, 14 Nov 2017 14:41:33 +0100
|
|
Subject: [PATCH 1/1] Include header files in rpc/pmap_clnt.h, so that this
|
|
header file can be used standalone as in the past with sunrpc.
|
|
|
|
Signed-off-by: Thorsten Kukuk <kukuk@suse.de>
|
|
---
|
|
tirpc/rpc/pmap_clnt.h | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/tirpc/rpc/pmap_clnt.h b/tirpc/rpc/pmap_clnt.h
|
|
index 6abd583..cf1ab61 100644
|
|
--- a/tirpc/rpc/pmap_clnt.h
|
|
+++ b/tirpc/rpc/pmap_clnt.h
|
|
@@ -64,6 +64,10 @@
|
|
#ifndef _RPC_PMAP_CLNT_H_
|
|
#define _RPC_PMAP_CLNT_H_
|
|
|
|
+#include <rpc/types.h>
|
|
+#include <rpc/xdr.h>
|
|
+#include <rpc/clnt.h>
|
|
+
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
--
|
|
2.12.3
|
|
|