mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
configure.ac: fork() during registry scanning is unsafe on Cygwin
Fixes #555978.
This commit is contained in:
parent
eacfe25cf9
commit
4ce04783b3
1 changed files with 4 additions and 1 deletions
|
@ -225,7 +225,10 @@ case $host_os in
|
|||
AC_DEFINE_UNQUOTED(GST_EXTRA_MODULE_SUFFIX, [".dylib"], [Extra platform specific plugin suffix])
|
||||
AC_DEFINE_UNQUOTED(GST_HAVE_UNSAFE_FORK, 1, [Defined when registry scanning through fork is unsafe])
|
||||
;;
|
||||
cygwin* | mingw* | msvc* | mks*)
|
||||
cygwin*)
|
||||
AC_DEFINE_UNQUOTED(GST_HAVE_UNSAFE_FORK, 1, [Defined when registry scanning through fork is unsafe])
|
||||
;;
|
||||
mingw* | msvc* | mks*)
|
||||
dnl HAVE_WIN32 currently means "disable POSIXisms".
|
||||
AC_DEFINE_UNQUOTED(HAVE_WIN32, 1, [Defined if compiling for Windows])
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue