Hello.

This to advice that fpchmod(thefile, S_IRWXU) is not working with freeBSD.
This because some const are missing for FreeBSD in FPC's RTL.

But, thanks to Graeme, this solves the thing =>

...
{$IFDEF FREEBSD}
const
  S_IRWXU = S_IRUSR or S_IWUSR or S_IXUSR;
  S_IRWXG = S_IRGRP or S_IWGRP or S_IXGRP;
  S_IRWXO = S_IROTH or S_IWOTH or S_IXOTH;
{$ENDIF}
...
Implementation
...

Fre;D




-----
Many thanks ;-)
--
View this message in context: 
http://free-pascal-general.1045716.n5.nabble.com/fpchmod-thefile-S-IRWXU-not-for-freeBSD-tp5721913.html
Sent from the Free Pascal - General mailing list archive at Nabble.com.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to