https://bugzilla.redhat.com/show_bug.cgi?id=1021161



--- Comment #1 from Petr Pisar <ppi...@redhat.com> ---
Isn't time_t always 32-bit on 32-bit x86 architecture? This is what you get
from kernel and glibc.

The -Duse64bitint is just to define perl's internal integer type to occupy
64-bits (i.e. typedef IV long). See config.h and perl.h:

#if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
#  if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
#    define IV_MAX INT64_MAX
[...]
#  else
#    define IV_MAX PERL_QUAD_MAX
[...]
#  endif
#  define IV_IS_QUAD
#  define UV_IS_QUAD
#else
#  if defined(INT32_MAX) && IVSIZE == 4
#    define IV_MAX INT32_MAX
[...]
#  else
#    define IV_MAX PERL_LONG_MAX
[...]
#  endif
#endif

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=h331GVcMk5&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Reply via email to