Improved Win32 Unicode handling. Improved h264 support in TS/TS2/MP4 files. Improved image handling (BMP, JPEG, etc.). The Qt4 GUI has been greatly improved. Translations have been updated.
15 lines
632 B
Text
15 lines
632 B
Text
$NetBSD: patch-ab,v 1.7 2009/02/24 16:09:39 wiz Exp $
|
|
|
|
--- avidemux/ADM_script/ADM_JSFunctions.cpp.orig 2008-07-24 11:49:40.000000000 +0000
|
|
+++ avidemux/ADM_script/ADM_JSFunctions.cpp
|
|
@@ -372,7 +372,9 @@ JSBool systemExecute(JSContext *cx, JSOb
|
|
// clear file descriptor table of forked process and fork
|
|
#if defined( __linux__) || defined(__macosx__) || defined(__APPLE__)
|
|
pid_t pidRtn = fork();
|
|
-#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
|
+#elif defined(__NetBSD__)
|
|
+ pid_t pidRtn = vfork();
|
|
+#elif defined(__FreeBSD__) || defined(__DragonFly__) || defined(__OpenBSD__)
|
|
pid_t pidRtn = rfork(RFPROC|RFCFDG);
|
|
#endif
|
|
|