#3511: copy.c:410: syntax error before `PRId64'
---------------------+------------------------------------------------------
Reporter: strk | Owner: mutt-dev
Type: defect | Status: new
Priority: major | Milestone:
Component: build | Version: 1.5.21
Keywords: freebsd |
---------------------+------------------------------------------------------
Building mutt-1.5.21 on freebsd 4.2-RELEASE with gcc 2.95.2:
copy.c:410: syntax error before `PRId64'
The symbol comes from config.h
{{{
#ifdef HAVE_FSEEKO
# define LOFF_T off_t
# if HAVE_C99_INTTYPES && HAVE_INTTYPES_H
# if SIZEOF_OFF_T == 8
# define OFF_T_FMT "%" PRId64
# else
# define OFF_T_FMT "%" PRId32
# endif
# else
# if (SIZEOF_OFF_T == 8) && (SIZEOF_LONG == 4)
# define OFF_T_FMT "%lld"
# else
# define OFF_T_FMT "%ld"
# endif
# endif
#else
}}}
--
Ticket URL: <http://dev.mutt.org/trac/ticket/3511>
Mutt <http://www.mutt.org/>
The Mutt mail user agent