diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-06-15 16:33:24 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-28 15:52:17 +0100 |
commit | 63cda67669157068e45e365ff3a423afba8bc4e6 (patch) | |
tree | bd0746f6f0ea1acc168847bdfe77b7748ca92e94 /meta/recipes-devtools/guile/files/opensuse | |
parent | 08bd969e53616cb6873cb3d632fa7fedfe373a65 (diff) | |
download | poky-63cda67669157068e45e365ff3a423afba8bc4e6.tar.gz |
guile: remove the recipe
With the removal of autogen and remake, guile is no longer needed.
Nothing requires it in meta-oe either.
(From OE-Core rev: 0be43e383d6f86066dd1c633ed35839a66a4851b)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guile/files/opensuse')
-rw-r--r-- | meta/recipes-devtools/guile/files/opensuse/guile-64bit.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/recipes-devtools/guile/files/opensuse/guile-64bit.patch b/meta/recipes-devtools/guile/files/opensuse/guile-64bit.patch deleted file mode 100644 index da69b5fd7b..0000000000 --- a/meta/recipes-devtools/guile/files/opensuse/guile-64bit.patch +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | Upstream-Status: Inappropriate [opensuse patch] | ||
2 | |||
3 | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
4 | |||
5 | Index: guile-2.0.3/libguile/hash.c | ||
6 | =================================================================== | ||
7 | --- guile-2.0.3.orig/libguile/hash.c 2011-07-06 15:49:59.000000000 -0700 | ||
8 | +++ guile-2.0.3/libguile/hash.c 2012-01-13 21:49:43.332844884 -0800 | ||
9 | @@ -270,7 +270,7 @@ scm_hasher(SCM obj, unsigned long n, siz | ||
10 | unsigned long | ||
11 | scm_ihashq (SCM obj, unsigned long n) | ||
12 | { | ||
13 | - return (SCM_UNPACK (obj) >> 1) % n; | ||
14 | + return ((unsigned long) SCM_UNPACK (obj) >> 1) % n; | ||
15 | } | ||
16 | |||
17 | |||
18 | @@ -306,7 +306,7 @@ scm_ihashv (SCM obj, unsigned long n) | ||
19 | if (SCM_NUMP(obj)) | ||
20 | return (unsigned long) scm_hasher(obj, n, 10); | ||
21 | else | ||
22 | - return SCM_UNPACK (obj) % n; | ||
23 | + return (unsigned long) SCM_UNPACK (obj) % n; | ||
24 | } | ||
25 | |||
26 | |||
27 | Index: guile-2.0.3/libguile/struct.c | ||
28 | =================================================================== | ||
29 | --- guile-2.0.3.orig/libguile/struct.c 2011-07-06 15:50:00.000000000 -0700 | ||
30 | +++ guile-2.0.3/libguile/struct.c 2012-01-13 21:49:43.332844884 -0800 | ||
31 | @@ -942,7 +942,7 @@ scm_struct_ihashq (SCM obj, unsigned lon | ||
32 | { | ||
33 | /* The length of the hash table should be a relative prime it's not | ||
34 | necessary to shift down the address. */ | ||
35 | - return SCM_UNPACK (obj) % n; | ||
36 | + return (unsigned long) SCM_UNPACK (obj) % n; | ||
37 | } | ||
38 | |||
39 | SCM_DEFINE (scm_struct_vtable_name, "struct-vtable-name", 1, 0, 0, | ||