diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2010-03-12 00:15:00 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2010-03-12 00:15:00 +0000 |
commit | a60ab486bef574a79278b441fd09275fd1b00882 (patch) | |
tree | 0d3dcb2cc6cb684035f0eb5475911806f9ca49c0 /dev-tex/luatex/files | |
parent | Initial import, bug 157240. (diff) | |
download | gentoo-2-a60ab486bef574a79278b441fd09275fd1b00882.tar.gz gentoo-2-a60ab486bef574a79278b441fd09275fd1b00882.tar.bz2 gentoo-2-a60ab486bef574a79278b441fd09275fd1b00882.zip |
fix bug #308337, with patch from Kacper Kowalik <xarthisius.kk@gmail.com>
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex/luatex/files')
-rw-r--r-- | dev-tex/luatex/files/luatex-0.50.0-m4-error.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-tex/luatex/files/luatex-0.50.0-m4-error.patch b/dev-tex/luatex/files/luatex-0.50.0-m4-error.patch new file mode 100644 index 000000000000..99a833a755bb --- /dev/null +++ b/dev-tex/luatex/files/luatex-0.50.0-m4-error.patch @@ -0,0 +1,45 @@ +Fixes bootstrap with =m4-1.4.14 +retaining compatibility with previous versions + +http://bugs.gentoo.org/308337 + +--- luatex-beta-0.50.0/source/m4/kpse-web2c.m4 ++++ luatex-beta-0.50.0/source/m4/kpse-web2c.m4 +@@ -20,7 +20,7 @@ + AS_HELP_STRING([--]m4_if($2, [yes], [dis], [en])[able-$1-default], + m4_if($2, [yes], + [do not ])[run $1 if $3 missing], +- kpse_indent_26+2))[]dnl ++ m4_eval(kpse_indent_26+2)))[]dnl + AS_CASE([$enable_$1_default], [yes|no], , + [enable_$1_default=$2])[] + ]) # KPSE_WITH_MKTEX +@@ -44,7 +44,7 @@ + AS_HELP_STRING([--]m4_if($2, [yes], [dis], [en])[able-$1], + m4_if($2, [yes], + [do not ])[compile and install $4], +- kpse_indent_26+2))[]dnl ++ m4_eval(kpse_indent_26+2)))[]dnl + AS_CASE([$enable_$1], [yes|no], , + [enable_$1=$2])[] + m4_ifval([$5], [ +@@ -69,7 +69,7 @@ + [AC_ARG_ENABLE([$1win], + AS_HELP_STRING([--enable-$1win], + [include $3 window support], +- kpse_indent_26+2))[]dnl ++ m4_eval(kpse_indent_26+2)))[]dnl + ]) # KPSE_WITH_MFWIN + + # KPSE_MFWIN_DEFINE(WINDOW, DEFINE, TEXT) +--- luatex-beta-0.50.0/source/texk/web2c/ac/web2c.ac ++++ luatex-beta-0.50.0/source/texk/web2c/ac/web2c.ac +@@ -47,7 +47,7 @@ + AC_ARG_ENABLE([mf-nowin], + AS_HELP_STRING([--disable-mf-nowin], + [do not build a separate non-windows-capable METAFONT], +- kpse_indent_26+2))[]dnl ++ m4_eval(kpse_indent_26+2)))[]dnl + AC_ARG_WITH([mf-x-toolkit], + AS_HELP_STRING([--without-mf-x-toolkit], + [do not use X toolkit for METAFONT]))[]dnl |