mgorny      14/05/23 07:53:22

  Modified:             ChangeLog multilib-build.eclass
  Log:
  Add remaining potential multilib arches to header wrapping template.

Revision  Changes    Path
1.1270               eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1270&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1270&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1269&r2=1.1270

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1269
retrieving revision 1.1270
diff -u -r1.1269 -r1.1270
--- ChangeLog   23 May 2014 07:47:39 -0000      1.1269
+++ ChangeLog   23 May 2014 07:53:22 -0000      1.1270
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1269 2014/05/23 
07:47:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1270 2014/05/23 
07:53:22 mgorny Exp $
+
+  23 May 2014; Michał Górny <[email protected]> multilib-build.eclass:
+  Add remaining potential multilib arches to header wrapping template.
 
   23 May 2014; Michał Górny <[email protected]> multilib-build.eclass:
   Use MULTILIB_ABI_FLAG for header wrapping. Also, use explicit error when ABI



1.53                 eclass/multilib-build.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.53&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.53&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.52&r2=1.53

Index: multilib-build.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- multilib-build.eclass       23 May 2014 07:47:39 -0000      1.52
+++ multilib-build.eclass       23 May 2014 07:53:22 -0000      1.53
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.52 
2014/05/23 07:47:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.53 
2014/05/23 07:53:22 mgorny Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -458,6 +458,24 @@
 #   elif(_MIPS_SIM == _ABIO32) /* o32 */
 #       error "abi_mips_o32 not supported by the package."
 #   endif
+#elif defined(__sparc__)
+#      if defined(__arch64__)
+#       error "abi_sparc_64 not supported by the package."
+#      else
+#       error "abi_sparc_32 not supported by the package."
+#      endif
+#elif defined(__s390__)
+#      if defined(__s390x__)
+#       error "abi_s390_64 not supported by the package."
+#      else
+#       error "abi_s390_32 not supported by the package."
+#      endif
+#elif defined(__powerpc__)
+#      if defined(__powerpc64__)
+#       error "abi_ppc_64 not supported by the package."
+#      else
+#       error "abi_ppc_32 not supported by the package."
+#      endif
 #else
 #      error "No ABI matched, please report a bug to bugs.gentoo.org"
 #endif




Reply via email to