app-shells/ksh: Fix build with GCC 5
authorMike Gilbert <floppym@gentoo.org>
Sun, 29 Nov 2015 20:03:23 +0000 (15:03 -0500)
committerMike Gilbert <floppym@gentoo.org>
Sun, 29 Nov 2015 20:04:23 +0000 (15:04 -0500)
Bug: https://bugs.gentoo.org/555670

Package-Manager: portage-2.2.26_p3

app-shells/ksh/files/cpp.patch [new file with mode: 0644]
app-shells/ksh/ksh-93.20140625.ebuild

diff --git a/app-shells/ksh/files/cpp.patch b/app-shells/ksh/files/cpp.patch
new file mode 100644 (file)
index 0000000..7075bcf
--- /dev/null
@@ -0,0 +1,24 @@
+iffe depends on cc -E not inserting newlines between tokens
+
+https://build.opensuse.org/package/view_file/home:Andreas_Schwab:Factory/ksh/cpp.patch?expand=1
+
+--- a/src/cmd/INIT/iffe.sh
++++ b/src/cmd/INIT/iffe.sh
+@@ -3427,7 +3427,7 @@
+                                               (eval "$src") <&$nullin || e=1
+                                               ;;
+                                       mac*|nomac*)
+-                                              if      compile $cc -E $tmp.c <&$nullin >$tmp.i
++                                              if      compile $cc -E -P $tmp.c <&$nullin >$tmp.i
+                                               then    sed -e '/<<[    ]*".*"[         ]*>>/!d' -e 's/<<[      ]*"//g' -e 's/"[        ]*>>//g' $tmp.i
+                                               else    e=1
+                                               fi
+@@ -3718,7 +3718,7 @@
+ <<\"#define $v\">>    $v      <<\"/* native $v */\">>
+ <<\"#endif\">>
+ #endif" > $tmp.c
+-                                      if      compile $cc -E $tmp.c <&$nullin >$tmp.i
++                                      if      compile $cc -E -P $tmp.c <&$nullin >$tmp.i
+                                       then    sed -e '/<<[    ]*".*"[         ]*>>/!d' -e 's/<<[      ]*"//g' -e 's/"[        ]*>>//g' $tmp.i > $tmp.t
+                                               if      test -s $tmp.t
+                                               then    success
index 5276f82cf8560d9794e8e348603afb6283d64dcf..020d6b97cab69051a9f6de5049b6338b8aa7966f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -29,6 +29,7 @@ src_prepare() {
                bin/package src/cmd/INIT/package.sh || die
 
        epatch "${FILESDIR}"/${PN}-prefix.patch
+       epatch "${FILESDIR}"/cpp.patch
        eprefixify src/cmd/ksh93/data/msg.c
 }