Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
735bc554
Commit
735bc554
authored
Jun 08, 2014
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: drop wince support
parent
f1db53bb
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
0 additions
and
95 deletions
+0
-95
contrib/bootstrap
contrib/bootstrap
+0
-3
contrib/src/iconv/libiconv-wince-hack.patch
contrib/src/iconv/libiconv-wince-hack.patch
+0
-34
contrib/src/iconv/libiconv-wince.patch
contrib/src/iconv/libiconv-wince.patch
+0
-14
contrib/src/iconv/rules.mak
contrib/src/iconv/rules.mak
+0
-4
contrib/src/live555/rules.mak
contrib/src/live555/rules.mak
+0
-6
contrib/src/ogg/libogg-wince.patch
contrib/src/ogg/libogg-wince.patch
+0
-13
contrib/src/ogg/rules.mak
contrib/src/ogg/rules.mak
+0
-3
contrib/src/postproc/rules.mak
contrib/src/postproc/rules.mak
+0
-4
contrib/src/zlib/rules.mak
contrib/src/zlib/rules.mak
+0
-1
contrib/src/zlib/zlib-wince.patch
contrib/src/zlib/zlib-wince.patch
+0
-13
No files found.
contrib/bootstrap
View file @
735bc554
...
...
@@ -259,9 +259,6 @@ case "${OS}" in
*
linux
*
)
add_make_enabled
"HAVE_LINUX"
;;
*
wince
*
)
add_make_enabled
"HAVE_WINCE"
;;
*
mingw
*
)
add_make_enabled
"HAVE_WIN32"
;;
...
...
contrib/src/iconv/libiconv-wince-hack.patch
deleted
100644 → 0
View file @
f1db53bb
diff -urNp libiconv.orig/configure libiconv/configure
--- libiconv.orig/configure 2009-06-30 22:51:53.000000000 +0200
+++ libiconv/configure 2009-11-12 04:41:02.000000000 +0100
@@ -20344,6 +20344,7 @@
rm -f conftest*
fi
+gl_cv_header_signal_h_SIGPIPE=yes
{ $as_echo "$as_me:$LINENO: result: $gl_cv_header_signal_h_SIGPIPE" >&5
$as_echo "$gl_cv_header_signal_h_SIGPIPE" >&6; }
@@ -23459,7 +23460,6 @@
_ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
-#include <signal.h>
/* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>. */
#include <sys/types.h>
diff -urNp libiconv.orig/signal.h libiconv/signal.h
--- libiconv.orig/signal.h 1970-01-01 01:00:00.000000000 +0100
+++ libiconv/signal.h 2009-11-12 04:39:24.000000000 +0100
@@ -0,0 +1,11 @@
+#ifndef _SIGNAL_H_
+#define _SIGNAL_H_
+
+#define SIGABRT 22 /* Abnormal termination (abort) */
+
+typedef void (*__p_sig_fn_t)(int);
+#define SIG_DFL ((__p_sig_fn_t) 0)
+#define SIG_IGN ((__p_sig_fn_t) 1)
+#define SIG_ERR ((__p_sig_fn_t) -1)
+
+#endif /* Not _SIGNAL_H_ */
contrib/src/iconv/libiconv-wince.patch
deleted
100644 → 0
View file @
f1db53bb
diff -urNp libiconv.orig/src/iconv.c libiconv/src/iconv.c
--- libiconv.orig/src/iconv.c 2009-06-21 13:17:33.000000000 +0200
+++ libiconv/src/iconv.c 2009-11-11 05:35:58.000000000 +0100
@@ -26,7 +26,9 @@
#include <string.h>
#include <iconv.h>
#include <errno.h>
-#include <locale.h>
+#ifdef HAVE_SETLOCALE
+# include <locale.h>
+#endif
#include <fcntl.h>
/* Ensure that iconv_no_i18n does not depend on libintl. */
contrib/src/iconv/rules.mak
View file @
735bc554
...
...
@@ -21,10 +21,6 @@ iconv: libiconv-$(LIBICONV_VERSION).tar.gz .sum-iconv
ifdef
HAVE_WIN64
$(APPLY)
$(SRC)
/iconv/libiconv-win64.patch
endif
ifdef
HAVE_WINCE
$(APPLY)
$(SRC)
/iconv/libiconv-wince.patch
$(APPLY)
$(SRC)
/iconv/libiconv-wince-hack.patch
endif
ifdef
HAVE_ANDROID
$(APPLY)
$(SRC)
/iconv/libiconv-android-ios.patch
endif
...
...
contrib/src/live555/rules.mak
View file @
735bc554
...
...
@@ -20,9 +20,6 @@ endif
ifdef
HAVE_WIN32
LIVE_TARGET
:=
mingw
endif
ifdef
HAVE_WINCE
LIVE_TARGET
:=
mingw
endif
ifdef
HAVE_DARWIN_OS
LIVE_TARGET
:=
macosx
else
...
...
@@ -37,9 +34,6 @@ live555: $(LIVE555_FILE) .sum-live555
rm
-Rf
live
$(UNPACK)
chmod
-R
u+w live
ifdef
HAVE_WINCE
cd
live
&&
sed
-e
's/-lws2_32/-lws2/g'
-i
.orig config.mingw
endif
cd
live
&&
sed
-e
's%cc%
$(CC)
%'
-e
's%c++%
$(CXX)
%'
-e
's%LIBRARY_LINK =.*ar%LIBRARY_LINK =
$(AR)
%'
-i
.orig config.
$(LIVE_TARGET)
cd
live
&&
sed
-i
.orig
-e
s/
"libtool -s -o"
/
"ar cr"
/g config.macosx
*
cd
live
&&
sed
-i
.orig
\
...
...
contrib/src/ogg/libogg-wince.patch
deleted
100644 → 0
View file @
f1db53bb
--- libogg/include/ogg/os_types.h 2005-11-22 23:01:12.000000000 +0000
+++ libogg/include/ogg/os_types.h 2005-11-22 23:05:11.000000000 +0000
@@ -55,6 +55,10 @@
typedef unsigned __int16 ogg_uint16_t;
# endif
+# if defined(UNDER_CE)
+# define exit(a)
+# endif
+
#elif defined(__MACOS__)
# include <sys/types.h>
contrib/src/ogg/rules.mak
View file @
735bc554
...
...
@@ -19,9 +19,6 @@ $(TARBALLS)/libogg-$(OGG_VERSION).tar.xz:
libogg
:
libogg-$(OGG_VERSION).tar.xz .sum-ogg
$(UNPACK)
$(APPLY)
$(SRC)
/ogg/libogg-1.1.patch
ifdef
HAVE_WINCE
$(APPLY)
$(SRC)
/ogg/libogg-wince.patch
endif
$(APPLY)
$(SRC)
/ogg/libogg-disable-check.patch
$(UPDATE_AUTOCONFIG)
$(MOVE)
...
...
contrib/src/postproc/rules.mak
View file @
735bc554
...
...
@@ -75,10 +75,6 @@ else
POSTPROCCONF
+=
--enable-pthreads
endif
ifdef
HAVE_WINCE
POSTPROCCONF
+=
--target-os
=
mingw32ce
--arch
=
armv4l
--cpu
=
armv4t
endif
# Build
ifdef
GPL
...
...
contrib/src/zlib/rules.mak
View file @
735bc554
...
...
@@ -20,7 +20,6 @@ $(TARBALLS)/zlib-$(ZLIB_VERSION).tar.gz:
zlib
:
zlib-$(ZLIB_VERSION).tar.gz .sum-zlib
$(UNPACK)
$(APPLY)
$(SRC)
/zlib/zlib-wince.patch
$(MOVE)
.zlib
:
zlib
...
...
contrib/src/zlib/zlib-wince.patch
deleted
100644 → 0
View file @
f1db53bb
--- zlib-1.2.6/zutil.h.orig 2011-12-18 19:39:45.000000000 +0100
+++ zlib-1.2.6/zutil.h 2012-04-30 23:29:05.787740053 +0200
@@ -161,6 +161,10 @@
# endif
#endif
+#if defined(_WIN32_WCE)
+# define fdopen(fd,mode) NULL /* No fdopen() */
+#endif
+
#if defined(__BORLANDC__) && !defined(MSDOS)
#pragma warn -8004
#pragma warn -8008
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment