OS X fix
This commit is contained in:
parent
d912fcd8b7
commit
430976597f
2 changed files with 4 additions and 1 deletions
|
|
@ -2,6 +2,9 @@
|
||||||
#undef Borderwidth
|
#undef Borderwidth
|
||||||
#define Borderwidth 0
|
#define Borderwidth 0
|
||||||
|
|
||||||
|
#undef TRUE /* OS X */
|
||||||
|
#undef FALSE
|
||||||
|
|
||||||
typedef struct Consreadmesg Consreadmesg;
|
typedef struct Consreadmesg Consreadmesg;
|
||||||
typedef struct Conswritemesg Conswritemesg;
|
typedef struct Conswritemesg Conswritemesg;
|
||||||
typedef struct Stringpair Stringpair;
|
typedef struct Stringpair Stringpair;
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ mountnfs(int proto, struct sockaddr_in *sa,
|
||||||
na.retrans = NFS_RETRANS;
|
na.retrans = NFS_RETRANS;
|
||||||
na.maxgrouplist = NFS_MAXGRPS;
|
na.maxgrouplist = NFS_MAXGRPS;
|
||||||
na.hostname = "backup";
|
na.hostname = "backup";
|
||||||
#ifndef __NetBSD__
|
#if !defined(__NetBSD__) && !defined(__APPLE__)
|
||||||
na.acregmin = 60;
|
na.acregmin = 60;
|
||||||
na.acregmax = 600;
|
na.acregmax = 600;
|
||||||
na.acdirmin = 60;
|
na.acdirmin = 60;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue