no chmod on windows for go and py compiler
Patch: James Dickson
git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@
1171520 13f79535-47bb-0310-9956-
ffa450edef68
// Close service file
f_remote.close();
+#ifndef _MSC_VER
+
// Make file executable, love that bitwise OR action
chmod(f_remote_name.c_str(),
S_IRUSR
| S_IXOTH
#endif
);
+
+#endif // _MSC_VER
+
}
/**
// Close service file
f_remote.close();
+#ifndef _MSC_VER
+
// Make file executable, love that bitwise OR action
chmod(f_remote_name.c_str(),
S_IRUSR
| S_IXOTH
#endif
);
+
+#endif // _MSC_VER
}
/**