shithub: sox

Download patch

ref: 124f64c8cc67b190e9cbf703c1b24220dfd60e98
parent: a71a600dd699df4b4ac02737e8fbec14b8870b1f
author: rrt <rrt>
date: Fri Aug 31 09:02:30 EDT 2007

Add __OS2__ to the backslash brigade.

--- a/src/sox_i.h
+++ b/src/sox_i.h
@@ -49,7 +49,7 @@
 #define timeb _timeb
 #endif
 
-#if defined(DOS) || defined(WIN32) || defined(__NT__) || defined(__DJGPP__)
+#if defined(DOS) || defined(WIN32) || defined(__NT__) || defined(__DJGPP__) || defined(__OS2__)
   #define LAST_SLASH(path) max(strrchr(path, '/'), strrchr(path, '\\'))
   #define IS_ABSOLUTE(path) ((path)[0] == '/' || (path)[0] == '\\' || (path)[1] == ':')
   #define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)