Displaying 1 result from an estimated 1 matches for "uf_sett".
Did you mean:
bf_set
2007 Mar 28
1
rsync patch -flags fails to compile on Mac OSX
...0.0cvs with the flags.diff patch on
a Mac OSX G4. It fails because the flags UF_NOUNLINK, and
SF_NOUNLINK do not exist on this platform.
sys/stat.h only gives the following flags
* Definitions of flags stored in file flags word.
*
* Super-user and owner changeable flags.
*/
#define UF_SETTABLE 0x0000ffff /* mask of owner changeable flags */
#define UF_NODUMP 0x00000001 /* do not dump file */
#define UF_IMMUTABLE 0x00000002 /* file may not be changed */
#define UF_APPEND 0x00000004 /* writes to file may only append */
#define UF_OPAQUE 0x00000008 /* directory is opaque wrt. union */
/...