On Fri, May 23, 2003 at 05:04:56AM +0900, Satoru Kitabayashi <[EMAIL PROTECTED]> wrote: > make[1]: Leaving directory `/home/tmp/clamav-20030522/libclamav' > In file included from zziplib/zzip-dir.c:15: > zziplib/zzip-file.h:20: zlib.h: No such file or directory > make[1]: *** [zzip-dir.lo] Error 1 > make: *** [all-recursive] Error 1
The answer is right in this line:
> zziplib/zzip-file.h:20: zlib.h: No such file or directory
zzip-file.h is trying to #include <zlib.h> and it looks like your
makefile is not looking for include files in any place but -I.,
-Izziplib, and -I.. . Add in -I{PATH TO YOUR HEADER FILES} and
-L{PATH TO YOUR LIBRARIES} to the makefile in the appropriate
places. If you do not have zlib installed, you should install
that before proceeding.
If you continue to have problems, what arguments (if any) did
you pass to ./configure?
--
+------------------------------------------------------------+
| Dave Vasil [EMAIL PROTECTED] |
| University of Tennessee Computer Science Dept. |
| UTKCS Systems Administrator 865-974-8364 |
+------------------------------------------------------------+
pgp00000.pgp
Description: PGP signature
