On Monday 03 March 2003 16:18, Tedd Maynard wrote: > While trying to build sqwebmail-3.5.0 on FreeBSD 4.7 it fails. > Specificaly when it moves into the "maildir" directory and tries to > compile "maildirsearch." This is where it fails: > > Compiling maildirsearchC.cpp > In file included from maildirsearchC.cpp:7: > maildirsearch.h:89: string: No such file or directory
<string> is the C++ version of <string.h>. It's not replacable with <string.h>. Sounds to me like your 'gcc' can't find the <string> header file from your standard library. Find that file, then read your 'gcc' man page and figure out how to include it. Jesse > gmake[1]: *** [maildirsearchC.o] Error 1 > gmake[1]: Leaving directory > `/home/phobos/server_testing/sqwebmail-3.5.0/maildir' > gmake: *** [all] Error 2 > > Also, here is my config: > ./configure --enable-authvchkpw --without-authpam --without-authuserdb > --enable-webpass=no --without-authpwd --without-authshadow > --enable-imagedir=/usr/local/www/data > --enable-mimetypes=/usr/local/etc/apache2/mime.types > > gcc version 2.8.1 > > Not knowing much about C/C++ I changed line 89 to read <string.h> but got > many other errors. On a side note I was using gmake. Does anyone have > any clue to what the problem is? > > Regards > > Tedd -- Jesse Guardiani, Systems Administrator WingNET Internet Services, P.O. Box 2605 // Cleveland, TN 37320-2605 423-559-LINK (v) 423-559-5145 (f) http://www.wingnet.net We are actively looking for companies that do a lot of long distance faxing and want to cut their long distance bill by up to 50%. Contact [EMAIL PROTECTED] for more info.
