Skip to content
Snippets Groups Projects
Commit 39516a6d authored by Steve Lhomme's avatar Steve Lhomme
Browse files

contrib: mpg123: don't detect unicode with PathCombineW on Winstore

It's not available and won't be used. But the build fails if it's not detected.
parent ec0b6bdc
No related branches found
No related tags found
No related merge requests found
...@@ -75,3 +75,23 @@ ...@@ -75,3 +75,23 @@
#endif #endif
#ifdef HAVE_SYS_STAT_H #ifdef HAVE_SYS_STAT_H
# include <sys/stat.h> # include <sys/stat.h>
--- mpg123/configure.ac.winstore 2019-03-12 14:32:33.852490800 +0100
+++ mpg123/configure.ac 2019-03-12 14:44:17.475401200 +0100
@@ -2202,7 +2202,7 @@ if test "x$win32_specific_codes" = xenab
{
MultiByteToWideChar (0, 0, NULL, 0, NULL, 0);
WideCharToMultiByte (0, 0, NULL, 0, NULL, 0, NULL, NULL);
- PathCombineW(0,0,0);
+ //PathCombineW(0,0,0);
return 0;
}
])], [win32_wide_working=yes], [win32_winver_bump=yes])
@@ -2217,7 +2217,7 @@ if test "x$win32_specific_codes" = xenab
{
MultiByteToWideChar (0, 0, NULL, 0, NULL, 0);
WideCharToMultiByte (0, 0, NULL, 0, NULL, 0, NULL, NULL);
- PathCombineW(0,0,0);
+ //PathCombineW(0,0,0);
return 0;
}
])], [win32_wide_working=yes], [AC_MSG_RESULT([no])])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment