[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [igraph] MinGW compilation: type definition missing (patch)
From: |
Tamas Nepusz |
Subject: |
Re: [igraph] MinGW compilation: type definition missing (patch) |
Date: |
Fri, 2 Sep 2016 14:43:58 +0200 |
Thanks, this is now committed:
https://github.com/igraph/igraph/commit/02005680aebb4281f2964c6d2d8d98851fce63b9
T.
On Fri, Sep 2, 2016 at 12:16 PM, Jannick <address@hidden> wrote:
> 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
>
>
>
>
> _______________________________________________
> igraph-help mailing list
> address@hidden
> https://lists.nongnu.org/mailman/listinfo/igraph-help
>