Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/hexchat/files: hexchat-2.10.0-plugins.patch
Date: Mon, 02 Jun 2014 18:06:10
Message-Id: 20140602180605.CC3832004E@flycatcher.gentoo.org
1 hasufell 14/06/02 18:06:05
2
3 Added: hexchat-2.10.0-plugins.patch
4 Log:
5 version bump wrt #512130, update live ebuild
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
8
9 Revision Changes Path
10 1.1 net-irc/hexchat/files/hexchat-2.10.0-plugins.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/files/hexchat-2.10.0-plugins.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/files/hexchat-2.10.0-plugins.patch?rev=1.1&content-type=text/plain
14
15 Index: hexchat-2.10.0-plugins.patch
16 ===================================================================
17 Date: Mon Jun 2 17:21:25 UTC 2014
18 Subject: Fix build with plugins enabled
19
20 backported from
21 https://github.com/hexchat/hexchat/commit/8578a9d52d993f4425259462c01854ea7784c57f#diff-d21d749e7b97744b9c653a6846da8ce5R1128
22
23 --- a/src/common/plugin.c
24 +++ b/src/common/plugin.c
25 @@ -1180,7 +1180,11 @@ hexchat_get_info (hexchat_plugin *ph, co
26 switch (hash)
27 {
28 case 0x325acab5: /* libdirfs */
29 +#ifdef USE_PLUGIN
30 return plugin_get_libdir ();
31 +#else
32 + return NULL;
33 +#endif
34
35 case 0x14f51cd8: /* version */
36 return PACKAGE_VERSION;