public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-block/di/files: di-4.33-build.patch
@ 2013-01-06 21:26 Mike Frysinger (vapier)
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger (vapier) @ 2013-01-06 21:26 UTC (permalink / raw
  To: gentoo-commits

vapier      13/01/06 21:26:32

  Added:                di-4.33-build.patch
  Log:
  Version bump #450612 by Agostino Sarubbo.
  
  (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.1                  sys-block/di/files/di-4.33-build.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/di/files/di-4.33-build.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/di/files/di-4.33-build.patch?rev=1.1&content-type=text/plain

Index: di-4.33-build.patch
===================================================================
These are the first errors occuring:

di.h:82:4: error: unknown type name ‘error’
di.h:82:19: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘/’ token
di.h:143:5: error: unknown type name ‘_fs_size_t’

Then there is a lot more errors after above.

memcpy can't be detected normally due to:
	http://gcc.gnu.org/PR55890

--- C/di.h
+++ C/di.h
@@ -9,6 +9,8 @@
 
 #include "config.h"
 
+#include <string.h>
+
 /*****************************************************/
 
 #include <stdio.h>
@@ -79,7 +81,7 @@
 
 #if ! _lib_memcpy && ! _define_memcpy
 # if ! _lib_bcopy && ! _define_bcopy
-   #error No_memcpy/bcopy_available.
+   //#error No_memcpy/bcopy_available.
 # else
 #  define memcpy(dst, src, cnt)     (bcopy((src), (dst), (cnt)), dst)
 # endif
@@ -87,7 +89,7 @@
 
 #if ! _lib_memset && ! _define_memset
 # if ! _lib_bzero && ! _define_bzero
-   #error No_memset/bzero_available.
+   //#error No_memset/bzero_available.
 # else
 #  define memset(s,c,n)    (bzero ((s), (n)), s)
 # endif





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-01-06 21:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-06 21:26 [gentoo-commits] gentoo-x86 commit in sys-block/di/files: di-4.33-build.patch Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox