ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/paths.h
(Generate patch)

Comparing ray/src/common/paths.h (file contents):
Revision 2.27 by schorsch, Sun Mar 6 01:13:17 2016 UTC vs.
Revision 2.28 by schorsch, Mon Mar 7 01:15:01 2016 UTC

# Line 20 | Line 20
20  
21    #define access                _access
22    #define mkdir(dirname,perms)  _mkdir(dirname)
23 <  #ifdef _MSC_VER
23 >  /* The windows _popen with the native shell breaks '\\\n' escapes.
24 >   * RT_WINPROC (used by SCons) enables our replacement functions to fix that.
25 >   * XXX This should really not depend on the compiler used! */
26 >  #if defined(_MSC_VER) && !defined(RT_WINPROC)
27      #define popen(cmd,mode)     _popen(cmd,mode)
28      #define pclose(p)           _pclose(p)
29    #else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines