summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-07-22 17:11:39 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-07-22 17:11:39 +0000
commit3c7c21274c3e0f1aef56ebf8ab79d331a854a4eb (patch)
treedb3b0ff26dd3858634c10985010168b5c0b8a94c /mencoder.c
parentd07c2b27c0a50214b72ef5c7bdc5e8ce226a2e27 (diff)
downloadmpv-3c7c21274c3e0f1aef56ebf8ab79d331a854a4eb.tar.bz2
mpv-3c7c21274c3e0f1aef56ebf8ab79d331a854a4eb.tar.xz
define SIGHUP and SIGPIPE for MinGW and catch SIGPIPE also in mplayer
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16050 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mencoder.c b/mencoder.c
index 6844c3c2b5..f65e768a1b 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -27,7 +27,9 @@
#include "config.h"
#ifdef __MINGW32__
+#define SIGHUP 1
#define SIGQUIT 3
+#define SIGPIPE 13
#endif
#ifdef WIN32
#include <windows.h>