search for: _spawnvp

Displaying 6 results from an estimated 6 matches for "_spawnvp".

2020 Aug 20
0
[PATCH nbdkit 12/13] wrapper: Port the wrapper to run on Windows.
...> #include "options.h" +#include "windows-compat.h" #include "utils.h" /* Construct an array of parameters passed through to real nbdkit. */ @@ -131,6 +132,45 @@ print_command (void) fputc ('\n', stderr); } +#ifdef WIN32 +/* Windows behaviour of _spawnvp is completely retarded: + * https://stackoverflow.com/questions/4146980/how-to-avoid-space-splitting-and-quote-removal-with-spawnvp + */ +static const char * +quote_string_for_spawn (const char *str) +{ + size_t i, len; + char *p, *ret = (char *) str; + + if (strchr (str, ' ') || strchr...
2013 Apr 12
0
Wine release 1.5.28
...Set the address space limit before running application code. kernel32: Fetch the system information only once the memory limits are correct. msvcrt: Constify the arguments of execv functions. makefiles: Don't link against libport in the tests. libport: Rename spawnvp to _spawnvp to avoid the deprecated name. cabarc: Avoid some redefinition warnings. wineconsole: Fix a pointer cast warning. ddraw: De-duplicate display modes even when returning the refresh rate. icinfo: Fix vsnprintfW usage. kernel32: Make event/mutex/semaphore functions hotpatc...
2014 Feb 20
0
Wine release 1.7.13
...r Button control. oleaut32: Fix destination data release when copying FADF_RECORD arrays. oleaut32: No need to VariantClear() before VariantCopy(). ole32/tests: Handle context generation failure better. Piotr Caban (2): msvcrt/tests: Don't pass path containing spaces to _spawnvp. msvcrt: Return error on invalid handle in _open_osfhandle. Stefan D?singer (7): wined3d: Don't use NP2 repacking for RECT textures. wined3d: Reject height scaled repacked np2 textures. d3d9/tests: Clean up yuv_color_test. d3d9/tests: Skip YUV tests if the formats...
2011 May 14
3
Problems building wine 1.3.20 on Mac os x 10.6.7
...code... unknown checking whether asm() works outside of functions... yes checking whether .previous is supported in assembly code... no checking whether CFI directives are supported in assembly code... no checking for _pclose... no checking for _popen... no checking for _snprintf... no checking for _spawnvp... no checking for _strdup... no checking for _stricmp... no checking for _strnicmp... no checking for _strtoi64... no checking for _strtoui64... no checking for _vsnprintf... no checking for asctime_r... yes checking for chsize... no checking for dlopen... yes checking for epoll_create... no check...
2006 May 18
2
Problems compiling Wine
...libjpeg.so.62 checking for -lungif soname... libungif.so.4 checking for -lgif soname... libgif.so checking for -lcapi20 soname... libcapi20.so.2 checking for _lwp_create... no checking for _lwp_self... no checking for _pclose... no checking for _popen... no checking for _snprintf... no checking for _spawnvp... no checking for _stricmp... no checking for _strnicmp... no checking for _vsnprintf... no checking for asctime_r... yes checking for chsize... no checking for clone... yes checking for epoll_create... yes checking for ffs... yes checking for finite... yes checking for fork... yes checking for fp...
2020 Aug 20
15
[PATCH nbdkit 0/13] Port to Windows without using a separate library.
Also available here: https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw-nolib After a lot of work I have made the port to Windows work without using a separate library. Instead, on Windows only, we build an "import library" (library of stubs) which resolves references to nbdkit_* functions in the main program and fixes up the plugin, basically the first technique outlined in