diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2009-04-17 11:44:11 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-04-17 11:44:11 +0100 |
commit | 4ce04783b37fd25ffc298b8e642f73ba275a2830 (patch) | |
tree | be90b1505598e4381fefca432b1192034ccf1ac2 /configure.ac | |
parent | eacfe25cf9d503fd8ca7ec16ca2918551cdd3d83 (diff) |
configure.ac: fork() during registry scanning is unsafe on Cygwin
Fixes #555978.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 319a1ce89..8fa1ce385 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) ;; |