On Mon, 12 Oct 2009 14:57:41 -0400, you wrote: >Installing msys and adding it to the path gets me past the backslash issues. >Now I am missing zlib.h:
[....] >gcc -g -Os -Wall -DFOSSIL_I18N=0 -L/usr/local/lib -I/usr/local/include -I. >-I./src -o blob.o -c blob_.c >blob_.c:28:18: zlib.h: No such file or directory >blob_.c: In function `blob_compress': >blob_.c:725: warning: implicit declaration of function `compress' >blob_.c: In function `blob_compress2': [....] In Makefile.w32 change the TCC line to: TCC = gcc -Os -Wall -DFOSSIL_I18N=0 -L/mingw/lib -I/mingw/include and the LIB line to: LIB = -lmingwex -lz -lws2_32 (all on one line) -- ( Kees Nuyt ) c[_] _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

