view src/librsb-1-nobzero.patch @ 4153:908a2a0cf6d6

octave.vbs: set GNUTERM env variable (Bug #47994) * installer-files/octave.bat: set GNUTERM=windows * installer-files/octave.vbs: set GNUTERM=windows
author John Donoghue
date Wed, 01 Jun 2016 07:58:16 -0400
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 */