[ -V-O-Y-A-G-E-R- @ 15.10.2003. 21:18 ] @
Plugin za mreze Gnutella i OpenFT mi traze zlib-1.1.4, koji sam skinuo i uradio ./configure; make test i make install...bas kao u README-u, ali pri ./configure plugina i dalje dobijam Code: checking for zlib version 1.1.4+ in /usr... no checking for zlib version 1.1.4+ in /usr/local... (cached) no checking for zlib version 1.1.4+ in /sw... (cached) no configure: error: NOTE: The zlib compression library version 1.1.4 or greater was not found on your system. If zlib 1.1.4+ is not installed, install it. Jel treba da napravim neki link ka zlibu? Ovako je prosla njegova instalacija... Code: linux:/home/pardox/TEST/zlib-1.1.4 # ./configure Checking for gcc... Building static library libz.a version 1.1.4 with gcc. Checking for unistd.h... Yes. Checking for errno.h... Yes. Checking for mmap support... Yes. linux:/home/pardox/TEST/zlib-1.1.4 # make test hello world uncompress(): hello, hello! gzread(): hello, hello! gzgets() after gzseek: hello! inflate(): hello, hello! large_inflate(): OK after inflateSync(): hello, hello! inflate with dictionary: hello, hello! *** zlib test OK *** linux:/home/pardox/TEST/zlib-1.1.4 # make install cp zlib.h zconf.h /usr/local/include chmod 644 /usr/local/include/zlib.h /usr/local/include/zconf.h cp libz.a /usr/local/lib cd /usr/local/lib; chmod 755 libz.a cd /usr/local/lib; if test -f libz.so.1.1.4; then \ rm -f libz.so libz.so.1; \ ln -s libz.so.1.1.4 libz.so; \ ln -s libz.so.1.1.4 libz.so.1; \ (ldconfig || true) >/dev/null 2>&1; \ fi |