]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/snglinst.cpp
added wx/defs.h include to correct compilation issues under Mac OS X
[wxWidgets.git] / src / unix / snglinst.cpp
index ccb6788d1191694589be62ba26e3f0509418355f..d29268bbd3d9b096be9458448907a9c45aa0ad91 100644 (file)
@@ -44,7 +44,7 @@
 
 #include <unistd.h>
 #include <sys/types.h>
 
 #include <unistd.h>
 #include <sys/types.h>
-#include <sys/stat.h>
+#include <sys/stat.h>           // for S_I[RW]USR
 #include <signal.h>             // for kill()
 #include <errno.h>
 
 #include <signal.h>             // for kill()
 #include <errno.h>
 
@@ -153,7 +153,7 @@ LockResult wxSingleInstanceCheckerImpl::CreateLockFile()
     // try to open the file
     m_fdLock = open(m_nameLock,
                     O_WRONLY | O_CREAT | O_EXCL,
     // try to open the file
     m_fdLock = open(m_nameLock,
                     O_WRONLY | O_CREAT | O_EXCL,
-                    S_IREAD | S_IWRITE);
+                    S_IRUSR | S_IWUSR);
 
     if ( m_fdLock != -1 )
     {
 
     if ( m_fdLock != -1 )
     {