[cmucl/cmucl][rtoy-unix-core] For linux, Load unix-glibc2.lisp instead of unix.lisp.
            
            
            
                7 May
                
                    2015
                
            
            
                7 May
                
                '15
                
            
            
            
        
    
                4:07 a.m.
            
        Raymond Toy pushed to branch rtoy-unix-core at cmucl / cmucl Commits: 3191f538 by Raymond Toy at 2015-05-06T21:07:00Z For linux, Load unix-glibc2.lisp instead of unix.lisp. - - - - - 1 changed file: - src/contrib/load-unix.lisp Changes: ===================================== src/contrib/load-unix.lisp ===================================== --- a/src/contrib/load-unix.lisp +++ b/src/contrib/load-unix.lisp @@ -1,6 +1,7 @@ ;; Load extra functionality in the UNIX package. (ext:without-package-locks - (load "modules:unix/unix")) + (load #-linux "modules:unix/unix" + #+linux "modules:unix/unix-glibc2")) (provide 'unix) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/3191f538dd21d8656e4d79fbf3...
        3834
        
      
          Age (days ago)
        
      
        3834
        
    
          Last active (days ago)
        
        
        
        0 comments
    
    
        
        1 participants
    
    
    
    
    
    
    
    
    participants (1)
- 
                
Raymond Toy