Paul Smith's bits of Wed, 28 Aug 2002 translated to: >checking for fstream.h... no >configure: error: To compile ht://Dig, you will need a C++ library. Try >installing libstdc++. > >The tail of the config.log file: >(snip) >configure:2104: checking for ostream.h >configure:2114: c++ -E conftest.C >/dev/null 2>conftest.out >In file included from /usr/local/include/g++-v3/backward/ostream.h:31, > from configure:2110: >/usr/local/include/g++-v3/backward/backward_warning.h:32:2: warning: >#warning This file includes at least one deprecated or antiquated header.
GCC 3 (you probably used GCC 2 last time) generates deprecated header warnings for things like ostream.h vs. ostream, which confuses some of the configure tests. The result is that configure doesn't believe a C++ library is present. You might want to try something like CXXFLAGS="-Wno-deprecated" ./configure and see if that clears up any of the problems. You might also want to check to see if there is a GCC 2 installation available on the server. Jim ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ htdig-general mailing list <[EMAIL PROTECTED]> To unsubscribe, send a message to <[EMAIL PROTECTED]> with a subject of unsubscribe FAQ: http://htdig.sourceforge.net/FAQ.html

