> I can find the files (without .h) in /usr/local/include/g++-v3, and with .h > in /usr/local/include/g++-v3/backward. Furthermore, after removing all htdig > files I run configure again and see the last lines of the config.log file:
What version of gcc are you using? > #warning This file includes at least one deprecated or antiquated header. > Please consider using one of the 32 headers found in section 17.4.1.2 of the > C++ standard. Examples include substituting the <X> header for the <X.h> <sigh> I haven't encountered a version of g++ that's this pedantic. I'm assuming you're using something from the gcc 3.2 branch or perhaps gcc 3.1 does this now? (I'm still using versions of 3.0.x. and 2.95.2) The big problem is that while these are depreciated headers, there are some older versions of gcc/g++ that don't have the <X> header, only the <X.h> header. You can try CXXFLAGS="-Wno-deprecated" ./configure but I'm not sure it'll defeat the warning. You may need to edit configure.in to refer to <fstream> (or ignore that check entirely) and re-run autoconf. -- -Geoff Hutchison Williams Students Online http://wso.williams.edu/ ------------------------------------------------------- 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

