Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
65ef0b68
Commit
65ef0b68
authored
Aug 23, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gnutls: update to version 3.1.9 and simplify
parent
69a7cda1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
configure.ac
configure.ac
+1
-1
contrib/src/gnutls/rules.mak
contrib/src/gnutls/rules.mak
+1
-1
modules/misc/gnutls.c
modules/misc/gnutls.c
+2
-2
No files found.
configure.ac
View file @
65ef0b68
...
...
@@ -4064,7 +4064,7 @@ dnl
AC_ARG_ENABLE(gnutls,
[ --enable-gnutls GNU TLS TLS/SSL support (default enabled)])
AS_IF([test "${enable_gnutls}" != "no"], [
PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.
4
], [
PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.
9
], [
VLC_ADD_PLUGIN([gnutls])
], [
AS_IF([test -n "${enable_gnutls}"], [
...
...
contrib/src/gnutls/rules.mak
View file @
65ef0b68
...
...
@@ -8,7 +8,7 @@ ifndef HAVE_DARWIN_OS
PKGS
+=
gnutls
endif
endif
ifeq
($(call need_pkg,"gnutls >= 3.
0.20
"),)
ifeq
($(call need_pkg,"gnutls >= 3.
1.9
"),)
PKGS_FOUND
+=
gnutls
endif
...
...
modules/misc/gnutls.c
View file @
65ef0b68
...
...
@@ -53,7 +53,7 @@ static int gnutls_Init (vlc_object_t *p_this)
goto
error
;
}
const
char
*
psz_version
=
gnutls_check_version
(
"3.1.
4
"
);
const
char
*
psz_version
=
gnutls_check_version
(
"3.1.
9
"
);
if
(
psz_version
==
NULL
)
{
msg_Err
(
p_this
,
"unsupported GnuTLS version"
);
...
...
@@ -183,7 +183,7 @@ static int gnutls_SessionOpen (vlc_tls_t *tls, int type,
goto
error
;
}
gnutls_transport_set_
ptr
(
session
,
(
gnutls_transport_ptr_t
)(
intptr_t
)
fd
);
gnutls_transport_set_
int
(
session
,
fd
);
tls
->
sys
=
session
;
tls
->
sock
.
p_sys
=
NULL
;
...
...
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