summaryrefslogtreecommitdiffstats
path: root/src/xine-lib-1-configure_ac.patch
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-03-08 10:31:43 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2016-03-08 10:31:43 (GMT)
commitd6b49a2a78feaf58bd181790ce3294442252966e (patch)
tree0fe4909639572c33726064a985d44e2af93d5a4b /src/xine-lib-1-configure_ac.patch
parent9414965ad524f9283c14f0004cc59e30e6d8970b (diff)
downloadmxe-d6b49a2a78feaf58bd181790ce3294442252966e.zip
mxe-d6b49a2a78feaf58bd181790ce3294442252966e.tar.gz
mxe-d6b49a2a78feaf58bd181790ce3294442252966e.tar.bz2
remove xine-lib
Diffstat (limited to 'src/xine-lib-1-configure_ac.patch')
-rw-r--r--src/xine-lib-1-configure_ac.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/xine-lib-1-configure_ac.patch b/src/xine-lib-1-configure_ac.patch
deleted file mode 100644
index c33a7b3..0000000
--- a/src/xine-lib-1-configure_ac.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-This file is part of MXE.
-See index.html for further information.
-
-diff -urN xine-lib-1.2.4/configure.ac xine-lib-1.2.4-patch/configure.ac
---- xine-lib-1.2.4/configure.ac 2013-09-20 16:04:44.000000000 +0300
-+++ xine-lib-1.2.4-patch/configure.ac 2013-12-17 11:45:43.657189416 +0200
-@@ -343,7 +343,7 @@
- AC_CHECK_HEADERS([alloca.h])
- AC_CHECK_HEADERS([assert.h byteswap.h dirent.h errno.h execinfo.h fcntl.h glob.h])
- AC_CHECK_HEADERS([libgen.h malloc.h netdb.h stdbool.h ucontext.h])
--AC_CHECK_HEADERS([sys/ioctl.h sys/mixer.h sys/mman.h sys/param.h sys/times.h sys/wait.h])
-+AC_CHECK_HEADERS([sys/mixer.h sys/mman-win32.h sys/param.h sys/times.h sys/wait.h])
-
- dnl This is duplicative due to AC_HEADER_STDC, but src/input/vcd stuff needs to
- dnl have HAVE_STDIO_H defined, or it won't compile.
-@@ -378,7 +378,7 @@
-
- AC_CACHE_CHECK([type of request parameter for ioctl()], [ac_cv_ioctl_request], [
- for ac_ioctl_request_type in "unsigned long" "int"; do
-- AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/ioctl.h>
-+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <windows.h>
- int ioctl(int fd, $ac_ioctl_request_type request, ...);]], [[]])],
- [ac_cv_ioctl_request=$ac_ioctl_request_type], [])
- done