view src/xine-lib-4-mkdir.patch @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents 5aba05f2226e
children
line wrap: on
line source

This file is part of MXE.
See index.html for further information.

diff -urN xine-lib-1.2.4/lib/os_internal.h xine-lib-1.2.4-patch/lib/os_internal.h
--- xine-lib-1.2.4/lib/os_internal.h	2012-02-05 21:17:00.000000000 +0200
+++ xine-lib-1.2.4-patch/lib/os_internal.h	2014-01-03 19:05:56.643793781 +0200
@@ -260,6 +260,7 @@
 #  ifdef __MINGW64__
 #    define mkdir(A, B) mkdir((A))
 #  else
+     _CRTIMP int __cdecl _mkdir(const char *_Path);
 #    define mkdir(A, B) _mkdir((A))
 #  endif