summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libtirpc/libtirpc-0.2.2/libtirpc-0.2.2-rpc-des-prot.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/libtirpc/libtirpc-0.2.2/libtirpc-0.2.2-rpc-des-prot.patch')
-rw-r--r--meta/recipes-extended/libtirpc/libtirpc-0.2.2/libtirpc-0.2.2-rpc-des-prot.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-extended/libtirpc/libtirpc-0.2.2/libtirpc-0.2.2-rpc-des-prot.patch b/meta/recipes-extended/libtirpc/libtirpc-0.2.2/libtirpc-0.2.2-rpc-des-prot.patch
new file mode 100644
index 0000000000..c38a55b876
--- /dev/null
+++ b/meta/recipes-extended/libtirpc/libtirpc-0.2.2/libtirpc-0.2.2-rpc-des-prot.patch
@@ -0,0 +1,39 @@
1From f2f43212b33dea42635061c82645287454a70107 Mon Sep 17 00:00:00 2001
2From: Mike Frysinger <vapier@gentoo.org>
3Date: Sat, 11 Jun 2011 15:21:55 -0400
4Subject: [PATCH] add multiple inclusion protection to rpc/des.h
5
6If you try to include this file multiple times, you get a build failure
7due to redefinitions of enums and such.
8
9Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10---
11 tirpc/rpc/des.h | 5 +++++
12 1 files changed, 5 insertions(+), 0 deletions(-)
13
14
15Upstream-Status: Backport
16
17diff --git a/tirpc/rpc/des.h b/tirpc/rpc/des.h
18index e3d6897..d2881ad 100644
19--- a/tirpc/rpc/des.h
20+++ b/tirpc/rpc/des.h
21@@ -33,6 +33,9 @@
22 * Copyright (c) 1986 by Sun Microsystems, Inc.
23 */
24
25+#ifndef _RPC_DES_H_
26+#define _RPC_DES_H_
27+
28 #define DES_MAXLEN 65536 /* maximum # of bytes to encrypt */
29 #define DES_QUICKLEN 16 /* maximum # of bytes to encrypt quickly */
30
31@@ -80,3 +83,5 @@ struct desparams {
32 * Software DES.
33 */
34 extern int _des_crypt( char *, int, struct desparams * );
35+
36+#endif
37--
381.7.5.3
39