]> granicus.if.org Git - yasm/commitdiff
Fix #157: Use UNIX (not Windows) path functions on cygwin platform.
authorPeter Johnson <peter@tortall.net>
Sun, 19 Oct 2008 07:29:15 +0000 (07:29 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 19 Oct 2008 07:29:15 +0000 (07:29 -0000)
svn path=/trunk/yasm/; revision=2157

libyasm/file.h

index e16491b70c30f24dca8c6cbd8e0c898609bdb011..a1de0339871b9a73468ac9559cde3c755d2c502c 100644 (file)
@@ -117,8 +117,7 @@ size_t yasm__splitpath_win(const char *path, /*@out@*/ const char **tail);
  */
 #ifndef yasm__splitpath
 # if defined (_WIN32) || defined (WIN32) || defined (__MSDOS__) || \
- defined (__DJGPP__) || defined (__OS2__) || defined (__CYGWIN__) || \
- defined (__CYGWIN32__)
+ defined (__DJGPP__) || defined (__OS2__)
 #  define yasm__splitpath(path, tail)   yasm__splitpath_win(path, tail)
 # else
 #  define yasm__splitpath(path, tail)   yasm__splitpath_unix(path, tail)
@@ -173,8 +172,7 @@ char *yasm__combpath_win(const char *from, const char *to);
  */
 #ifndef yasm__combpath
 # if defined (_WIN32) || defined (WIN32) || defined (__MSDOS__) || \
- defined (__DJGPP__) || defined (__OS2__) || defined (__CYGWIN__) || \
- defined (__CYGWIN32__)
+ defined (__DJGPP__) || defined (__OS2__)
 #  define yasm__combpath(from, to)      yasm__combpath_win(from, to)
 # else
 #  define yasm__combpath(from, to)      yasm__combpath_unix(from, to)