Hi Nadia
I thought I saw a correction go by recently that fixed this in the trunk?
What revision are you at, and on which branch?
On Fri, Feb 26, 2010 at 3:48 AM, Nadia Derbey <Nadia.Derbey_at_[hidden]> wrote:
> Hi,
>
> I'm getting this warning during the make if configured with
> --enable-picky:
> ../../../../opal/event/evutil.h:62:7: warning: "_EVENT_SIZEOF_LONG_LONG"
> is not defined
> Looks like changeset #32687831ca9e has introduced a typo?
> I'm wondering whether _EVENT_SIZEOF_LONG_LONG shouldn't be changed to
> SIZEOF_LONG_LONG?
>
>
> --- a/opal/event/evutil.h Thu Feb 25 21:04:09 2010 +0000
> +++ b/opal/event/evutil.h Fri Feb 26 10:29:31 2010 +0100
> @@ -59,7 +59,7 @@ extern "C" {
> #elif defined(WIN32)
> #define ev_uint64_t unsigned __int64
> #define ev_int64_t signed __int64
> -#elif _EVENT_SIZEOF_LONG_LONG == 8
> +#elif SIZEOF_LONG_LONG == 8
> #define ev_uint64_t unsigned long long
> #define ev_int64_t long long
> #elif SIZEOF_LONG == 8
>
>
> Regards,
> Nadia
> --
> Nadia Derbey <Nadia.Derbey_at_[hidden]>
>
> _______________________________________________
> devel mailing list
> devel_at_[hidden]
> http://www.open-mpi.org/mailman/listinfo.cgi/devel
>
|