File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ SVN Version
5656   right relative paths and paths with spaces. Many thanks to Alejandro Dubrovsky
5757   for providing the patch.
5858
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+ 
5963----------- 
6064Version 1.0
6165----------- 
Original file line number Diff line number Diff line change 3333#TODO: 
3434#  1. Add "explicit" property for constructors 
3535
36- __version__  =  '1.5.0 ' 
36+ __version__  =  '1.5.1 ' 
3737
3838__revision__  =  1080 
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ def raise_on_wrong_settings( self ):
176176        if  sys .platform  ==  'win32' :
177177            gccxml_name  =  'gccxml'  +  '.exe' 
178178            environment_var_delimiter  =  ';' 
179-         elif  sys . platform  ==  'linux2'    or   sys . platform   ==   'darwin '
179+         elif  os . name  ==  'posix ' :
180180            gccxml_name  =  'gccxml' 
181181            environment_var_delimiter  =  ':' 
182182        else :
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments