mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-08 15:44:11 +00:00
Use polyfills in MSYS2 environment
This commit is contained in:
parent
6aaf9433a5
commit
b14e39815b
@ -37,6 +37,11 @@
|
||||
#include "string_util.h"
|
||||
#include "addhead.h"
|
||||
|
||||
// Use the polyfill in MSYS2 environment
|
||||
#ifdef __MSYS__
|
||||
#include "strcasestr.h"
|
||||
#endif
|
||||
|
||||
//-------------------------------------------------------------------
|
||||
// Symbols
|
||||
//-------------------------------------------------------------------
|
||||
|
@ -28,6 +28,11 @@
|
||||
#include "metaheader.h"
|
||||
#include "string_util.h"
|
||||
|
||||
// Use the polyfill in MSYS2 environment
|
||||
#ifdef __MSYS__
|
||||
#include "strptime.h"
|
||||
#endif
|
||||
|
||||
//-------------------------------------------------------------------
|
||||
// Utility functions for convert
|
||||
//-------------------------------------------------------------------
|
||||
|
@ -32,6 +32,11 @@
|
||||
#include "s3fs.h"
|
||||
#include "string_util.h"
|
||||
|
||||
// Use the polyfill in MSYS2 environment
|
||||
#ifdef __MSYS__
|
||||
#include "strptime.h"
|
||||
#endif
|
||||
|
||||
//-------------------------------------------------------------------
|
||||
// Global variables
|
||||
//-------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user