On Thu, 30 Sep 2004, DAVID GAMA RODRIGUEZ wrote: > Thanks Kevin for the tar > > > > But I still having problems, now I get the next error > > > > g++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common > -I./interfaces/cc/ -I./modules/speller/default/ > -DLOCALEDIR=\"/usr/local/share/locale\" -g -O2 -fno-exceptions -c > common/file_util.cpp -Wp,-MD,common/.deps/file_util.TPlo -fPIC -DPIC -o > common/.libs/file_util.o > > common/file_util.cpp: In function `void > acommon::truncate_file(acommon::FStream &, acommon::ParmString)': > > common/file_util.cpp:132: implicit declaration of function `int > acommon::ftruncate(...)'
Try adding the following two lines just before the line "namespace acommon": #include <unistd.h> #include <sys/types.h> And see if that solves your problem. -- http://kevin.atkinson.dhs.org _______________________________________________ Aspell-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/aspell-user
