fix win32 build issues

This commit is contained in:
John Cupitt 2016-03-26 11:09:46 +00:00
parent 3115310bb7
commit d5b6a2ec3e
1 changed files with 5 additions and 0 deletions

View File

@ -1037,8 +1037,12 @@ vips_existsf( const char *name, ... )
} }
#ifdef OS_WIN32 #ifdef OS_WIN32
#ifndef popen
#define popen(b,m) _popen(b,m) #define popen(b,m) _popen(b,m)
#endif
#ifndef pclose
#define pclose(f) _pclose(f) #define pclose(f) _pclose(f)
#endif
#endif /*OS_WIN32*/ #endif /*OS_WIN32*/
/* Do popen(), with printf-style args. /* Do popen(), with printf-style args.
@ -1753,6 +1757,7 @@ vips_realpath( const char *path )
} }
else else
real = g_strdup( path ); real = g_strdup( path );
}
#endif #endif
return( real ); return( real );