Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/zsh/files: zsh-4.3.4-mkmakemod.patch
Date: Wed, 21 Jan 2009 11:20:27
Message-Id: E1LPb8D-0008Tu-Fv@stork.gentoo.org
1 tove 09/01/21 11:20:25
2
3 Added: zsh-4.3.4-mkmakemod.patch
4 Log:
5 Fix for latest autoconf (#254348)
6 (Portage version: 2.2_rc23/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch?rev=1.1&content-type=text/plain
13
14 Index: zsh-4.3.4-mkmakemod.patch
15 ===================================================================
16 bug #254348
17 --- a/Src/mkmakemod.sh
18 +++ b/Src/mkmakemod.sh
19 @@ -111,10 +111,7 @@
20 sed -e '/^#/d' -e 's/ .*/ /' -e 's/^name=/ /'`"
21 module_list="${bin_mods}${dyn_mods}"
22
23 - # check 2.13, 2.50, and 2.60 syntaxes
24 - if grep '%@D@%D%' config.status >/dev/null ||
25 - grep ',@D@,D,' config.status >/dev/null ||
26 - grep ',@D@,|#_!!_#|D,' config.status >/dev/null; then
27 + if grep '^#define DYNAMIC ' config.h >/dev/null; then
28 is_dynamic=true
29 else
30 is_dynamic=false