Revision: 65319
          http://sourceforge.net/p/brlcad/code/65319
Author:   starseeker
Date:     2015-06-16 02:09:19 +0000 (Tue, 16 Jun 2015)
Log Message:
-----------
More mingw tweaks

Modified Paths:
--------------
    brlcad/trunk/src/other/libutahrle/rle_open_f.c
    brlcad/trunk/src/other/libutahrle/rle_rawrow.c

Modified: brlcad/trunk/src/other/libutahrle/rle_open_f.c
===================================================================
--- brlcad/trunk/src/other/libutahrle/rle_open_f.c      2015-06-16 02:03:57 UTC 
(rev 65318)
+++ brlcad/trunk/src/other/libutahrle/rle_open_f.c      2015-06-16 02:09:19 UTC 
(rev 65319)
@@ -24,6 +24,10 @@
 #endif
 #include <errno.h>
 
+#if defined(__MINGW32__)
+#  define NO_OPEN_PIPES
+#endif
+
 /* Count outstanding children.  Assume no more than 100 possible. */
 #define MAX_CHILDREN 100
 static int catching_children = 0;

Modified: brlcad/trunk/src/other/libutahrle/rle_rawrow.c
===================================================================
--- brlcad/trunk/src/other/libutahrle/rle_rawrow.c      2015-06-16 02:03:57 UTC 
(rev 65318)
+++ brlcad/trunk/src/other/libutahrle/rle_rawrow.c      2015-06-16 02:09:19 UTC 
(rev 65319)
@@ -52,7 +52,7 @@
                    *outptr = j;
            }
            else
-               bzero( (char *)&outrows[chan][the_hdr->xmin],
+               memset( (char *)&outrows[chan][the_hdr->xmin], 0,
                       the_hdr->xmax - the_hdr->xmin + 1 );
 
            for( i = 0; i < nraw[chan]; i++ )

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to