Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
039deae0
Commit
039deae0
authored
Nov 06, 2004
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checks for gnutls
parent
c5d256a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
configure.ac
configure.ac
+8
-9
No files found.
configure.ac
View file @
039deae0
...
...
@@ -1211,10 +1211,9 @@ fi
dnl
dnl TLS/SSL
dnl
AC_ARG_ENABLE(tls,
[ --enable-tls TLS/SSL support (default disabled)])
AS_IF([test "${enable_tls}" == "yes"],
AC_DEFINE(ENABLE_TLS, 1, Define if you want the TLS/SSL support))
AC_ARG_ENABLE(gnutls,
[ --enable-gnutls gnutls TLS/SSL support (default disabled)])
AS_IF([test "${enable_gnutls}" == "yes"], VLC_ADD_PLUGINS([gnutls]))
dnl
...
...
@@ -3826,7 +3825,7 @@ dnl
dnl GnuTLS-based TLS/SSL support
dnl
AC_ARG_WITH(libgnutls-prefix,
[ --with-libgnutls-prefix=P
FX S
et prefix where libgnutls is installed],
[ --with-libgnutls-prefix=P
REFIX s
et prefix where libgnutls is installed],
libgnutls_config_prefix="$withval", libgnutls_config_prefix="")
AS_IF([test x$libgnutls_config_prefix != x],
...
...
@@ -3835,7 +3834,7 @@ AS_IF([test x$libgnutls_config_prefix != x],
)
)
if test "x$enable_tls" == "xyes"; then
if test "x$enable_
gnu
tls" == "xyes"; then
AC_PATH_PROG(LIBGNUTLS_CONFIG, libgnutls-config, no)
no_libgnutls=""
...
...
@@ -3850,14 +3849,14 @@ if test "x$enable_tls" == "xyes"; then
AS_IF([test "x$no_libgnutls" = x],
AC_MSG_RESULT(yes)
VLC_ADD_CFLAGS([
vlc
], [$LIBGNUTLS_CFLAGS])
VLC_ADD_LDFLAGS([
vlc
], [$LIBGNUTLS_LIBS])
VLC_ADD_CFLAGS([
gnutls
], [$LIBGNUTLS_CFLAGS])
VLC_ADD_LDFLAGS([
gnutls
], [$LIBGNUTLS_LIBS])
AC_DEFINE(HAVE_GNUTLS, 1, Define to 1 if you have libgnutls)
,
AC_MSG_RESULT(no)
LIBGNUTLS_CFLAGS=""
LIBGNUTLS_LIBS=""
AC_MSG_ERROR(TLS/SSL support cannot be compiled)
AC_MSG_ERROR(
gnutls
TLS/SSL support cannot be compiled)
)
fi
...
...
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