
Si on recoit:

print.cpp: In function 'void lib::printf(EnvT*)':
print.cpp:85: error: 'MSG_NOSIGNAL' was not declared in this scope
make[3]: *** [gdl-print.o] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

Alors, dans le fichier "src/print.cpp", il faut commenter
les lignes suivantes (cf version 1.11 de ce fichier dans le CVS)

   84     // Socket send
   85     if (sockNum != -1) {
   86       int status = send(sockNum, oss.rdbuf()->str().c_str(), 
   87                         oss.rdbuf()->str().size(), MSG_NOSIGNAL);
   88 
   89       if (status != oss.rdbuf()->str().size())
   90         e->Throw( "SEND error Unit: "+i2s( lun)+":"+oss.rdbuf()->str());
   91     }

