On Fri, 2 Dec 2005 10:45:06 +0000 (UTC) "Peter Bortas @ Pike developers forum" 10353@lyskom.lysator.liu.se wrote:
It's time for another 7.6 distribution soon. There are a couple of nasty little bugs that have been fixed since the last one, and I said we were going to release a bit more often. No big rush this time though, so if someone has something in perticular they'd like to fix it can wait a week. If not I'll try to make a release this weekend. Take a look at CHANGES and make sure your changes are documented.
Also, the pdflib configure fix didn't quite fix the problem.
AC_CHECK_LIB(z, deflate, [ LIBS="${LIBS-} -lz" ]) AC_CHECK_LIB(jpeg,jpeg_CreateCompress, [ LIBS=${LIBS-} -ljpeg ]) AC_CHECK_LIB(png, png_read_image, [ LIBS="${LIBS-} -lpng" ]) AC_CHECK_LIB(tiff,TIFFOpen, [ LIBS="${LIBS-} -ltiff" ])
The jpeg test is missing its quotes (should be LIBS="${LIBS-} -ljpeg"). This is in both 7.6 and 7.7.
Adam