view src/librsb-1-nobzero.patch @ 4067:bdcddfdc57d0

Install binary of-* packages * Makefile.in: (OCTAVE_FORGE_PKG_BUILD) call pkg-install.py if building binary packages * src/of-io-1-cross-fixes.patch: new patch * src/of-specfun-1-cross-fixes.patch: new patch * tools/pkg-install.py: new file
author John Donoghue <john.donoghue@ieee.org>
date Sat, 26 Dec 2015 22:00:59 -0500
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 */