diff options
author | Viktor Szakats <commit@vsz.me> | 2020-07-14 08:30:17 +0000 |
---|---|---|
committer | Viktor Szakats <commit@vsz.me> | 2020-07-14 08:30:17 +0000 |
commit | 8fa3f7809a30753a6c6bbedaf243de7447d018f3 (patch) | |
tree | 79dda1687b87ae592fb3a87c74ecf1e0da25c49c /lib/version.c | |
parent | 61a08508f6a458fe21bbb18cd2a9bac2f039452b (diff) | |
download | curl-8fa3f7809a30753a6c6bbedaf243de7447d018f3.tar.gz |
windows: add unicode to feature list
Reviewed-by: Marcel Raad
Reviewed-by: Marc Hörsken
Closes #5491
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/version.c b/lib/version.c index 91fb092ae..4f6dda24f 100644 --- a/lib/version.c +++ b/lib/version.c @@ -390,6 +390,9 @@ static curl_version_info_data version_info = { ( (SIZEOF_OFF_T > 4) || defined(USE_WIN32_LARGE_FILES) ) | CURL_VERSION_LARGEFILE #endif +#if defined(WIN32) && defined(UNICODE) && defined(_UNICODE) + | CURL_VERSION_UNICODE +#endif #if defined(CURL_DOES_CONVERSIONS) | CURL_VERSION_CONV #endif |