On Wednesday 14 May 2008 21:27:05 Adriaan de Groot wrote: > Of course, when you do *that*, you end up with the weird CMake error > reported earlier on this list, regarding CLUCENE_LIBRARY_DIR. I'm looking > into that.
This turns out to be the following: CLucene 0.9.19 installed (?) a clucene-config.h file which #defines _CL_VERSION. In 0.9.20, this file is no longer installed. The CLucene checks look for that file and fail if it's not there. The reason the file is not installed is because -- I think -- we're building CLucene with auto* while for 0.9.20 its build system seems to have changed to CMake. That's something for a brave soul to try to figure out. In the meantime, there is a cheap but hackish fix (which we could even do in Solaris/install.sh for the current 0.9.20 build): create that file (/opt/foss/include/CLucene/clucene-config.h) and put #define _CL_VERSION "0.9.20" in there.
