On 29 March 2016 at 19:25, luigi scarso wrote:
On Tue, Mar 29, 2016 at 6:03 PM, Mojca Miklavec wrote:
For some very weird reason I'm unable to compile LuaTeX 0.90.0 on i386-solaris (it works with sparc-solaris though which is even more weird).
Here's the error I'm getting:
../../../source/libs/zziplib/zziplib-src/zzip/stat.c:44:37: error: 'strcasecmp' undeclared (first use in this function) cmp = (flags & ZZIP_CASELESS) ? strcasecmp : strcmp; ^
I need to add that compiling TeX Live sources works.
hm, can you compare Work/libs/zziplib/config.log of texlive with build/libs/zziplib/config.log of luatex ?
(1) TL runs an additional test configure:5802: checking for special C compiler options needed for large files configure:5847: result: no configure:5853: checking for _FILE_OFFSET_BITS value needed for large files configure:5878: /opt/csw/bin/gcc-5.2 -c -g -O2 conftest.c >&5 ... (2) checking whether system differentiates 64bit off_t by defines luatex: no texlive: yes (3) TL defines #define _FILE_OFFSET_BITS 64 #define LARGEFILE_SENSITIVE 1 (4) configure:6269: checking for off64_t luatex: conftest.c:68:13: error: 'off64_t' undeclared (first use in this function) if (sizeof (off64_t)) texlive: conftest.c:70:22: error: expected expression before ')' token if (sizeof ((off64_t))) (5) luatex defines #define off64_t _zzip_off_t (6) luatex: ac_cv_sys_largefile_sensitive=no ac_cv_type_off64_t=no texlive: ac_cv_sys_file_offset_bits=64 ac_cv_sys_largefile_CC=no ac_cv_sys_largefile_sensitive=yes ac_cv_type_off64_t=yes Mojca