view src/librsb-1-nobzero.patch @ 4128:253ac032547a

Fix more problems with libmng recipe (bug #47712). * src/libmng.mk: Remove unnecessary mkdir command in recipe. Call autoreconf with --force option because the libmng archive file ships with an out-of-date ltmain.sh which will not be replaced without --force.
author Rik <rik@octave.org>
date Wed, 20 Apr 2016 15:39:48 -0700
parents c7e31c07c915
children
line wrap: on
line source

--- librsb-1.2.0-rc2/rsb_sys.h.orig	2015-11-08 08:20:56.737959489 -0500
+++ librsb-1.2.0-rc2/rsb_sys.h	2015-11-08 08:24:46.712072656 -0500
@@ -204,6 +204,8 @@
 
 #ifdef RSB_HAVE_BZERO
 #define RSB_BZERO bzero		/**< we have the chance of using a custom bzero function in this way */
+#elif RSB_HAVE_MEMSET 
+#define RSB_BZERO(a,b) memset(a,0,b)
 #else /* RSB_HAVE_BZERO */
 #error "missing a definition of RSB_BZERO!"
 #endif /* RSB_HAVE_BZERO */