summaryrefslogtreecommitdiff
path: root/tikzit/src/common
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-03-08 17:36:48 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-03-08 17:36:48 +0000
commitd26e56e2fd57da2dadddf760b2984956f7daa069 (patch)
tree279ce688dc97b4a261e8c24af106e26b33b60a25 /tikzit/src/common
parent2ce4b8a878459ed8c4b9f3077b9c8f924c2a04e4 (diff)
GTK: fix creating the user support dir
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@418 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'tikzit/src/common')
-rw-r--r--tikzit/src/common/SupportDir.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/tikzit/src/common/SupportDir.m b/tikzit/src/common/SupportDir.m
index f0392b1..22fed1b 100644
--- a/tikzit/src/common/SupportDir.m
+++ b/tikzit/src/common/SupportDir.m
@@ -25,6 +25,7 @@
#ifndef __APPLE__
#import <glib.h>
+#import "stat.h"
#endif
@implementation SupportDir
@@ -55,7 +56,7 @@
error:NULL];
#else
// NSFileManager is slightly dodgy on Windows
- g_mkdir_with_parents ([[SupportDir userSupportDir] UTF8String], 700);
+ g_mkdir_with_parents ([[SupportDir userSupportDir] UTF8String], S_IRUSR | S_IWUSR | S_IXUSR);
#endif
}