On Fri, 02 Sep 2016 09:54:05 +0200
Gregor Cramer <rema...@gmx.net> wrote:

> > ........ " Also configure fails to detect a local version of zziplib
> > (v0.13.62)" Same here. even with explicit "./configure
> > --with-zziplib-lib=/usr/lib/x86_64-linux-gnu
> > --with-zziplib-inc=/usr/include/zzip" the bundled zzip is used.  
> 
> About zziplib: no problem. because the bundled version will be used. The
> same applies if other libraries are not available, like zlib. I've
> bundled these libraries because the Windoze version (in planning)
> requires these, no zziplib at all under Windoze. If you like to use a
> shared library, then install zziplib, for example "sudo apt-get install
> libzzip-dev".

zziplib IS installed and the test in configure seems to compile & run
without error

It looks like the final test for zziplib is back-to-front

    if {[SystemHasZziplib]} {
        puts "yes."
    } else {
        puts "no.\n      Using bundled library."
        set subdir(zziplib) "util/zzip"
        set package(zziplib-lib) "[pwd]/src/util/zzip/libzzip.a"
        set package(zziplib-inc) "-I[pwd]/src/util/zzip"
    }

should be

    if {[SystemHasZziplib]} {
        puts "no.\n      Using bundled library."
        set subdir(zziplib) "util/zzip"
        set package(zziplib-lib) "[pwd]/src/util/zzip/libzzip.a"
        set package(zziplib-inc) "-I[pwd]/src/util/zzip"
    } else {
        puts "yes."
    }
-- 
Drew

------------------------------------------------------------------------------
_______________________________________________
Scidb-users mailing list
Scidb-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/scidb-users

Reply via email to