Hi,

 

I finally managed to compile the iGraph package for MinGW (using msys) which
needs the tiny patch to make that happen. 

 

Effectively, in prpack/prpack_csc.h the __int64 type definition is missing
which is amended by innocently including <stdio.h>.

 

Best regards,

J.

 

===================================================================

--- prpack/prpack_csc.h (revision 2)

+++ prpack/prpack_csc.h           (working copy)

@@ -4,6 +4,7 @@

#if !defined(_MSC_VER) && !defined (__MINGW32__) && !defined (__MINGW64__)

#  include <stdint.h>

#else

+#  include <stdio.h>

typedef __int64 int64_t;

#endif

 

Attachment: igraph_2016-09-02.diff
Description: Binary data

_______________________________________________
igraph-help mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/igraph-help

Reply via email to