File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ SVN Version
56
56
right relative paths and paths with spaces. Many thanks to Alejandro Dubrovsky
57
57
for providing the patch.
58
58
59
+ 10. Small fix, which allows pygccxml to be usable on FreeBSD too: replace
60
+ `elif sys.platform == 'linux2' or sys.platform == 'darwin' ` with `os.name == 'posix' `,
61
+ as suggested by `Jakub Wilk <http://groups.google.com/group/linux.debian.bugs.dist/browse_thread/thread/572d2286ca0b2cec?pli=1> `
62
+
59
63
-----------
60
64
Version 1.0
61
65
-----------
Original file line number Diff line number Diff line change 33
33
#TODO:
34
34
# 1. Add "explicit" property for constructors
35
35
36
- __version__ = '1.5.0 '
36
+ __version__ = '1.5.1 '
37
37
38
38
__revision__ = 1080
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ def raise_on_wrong_settings( self ):
176
176
if sys .platform == 'win32' :
177
177
gccxml_name = 'gccxml' + '.exe'
178
178
environment_var_delimiter = ';'
179
- elif sys . platform == 'linux2' or sys . platform == 'darwin ' :
179
+ elif os . name == 'posix ' :
180
180
gccxml_name = 'gccxml'
181
181
environment_var_delimiter = ':'
182
182
else :
You can’t perform that action at this time.
0 commit comments