Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
cb0340cc
Commit
cb0340cc
authored
Sep 11, 2011
by
Christian Beier
Committed by
Gernot Tenchio
Sep 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Autotools: Fix OpenSSL and GnuTLS advertisement.
parent
2046cc9a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
configure.ac
configure.ac
+2
-1
Makefile.am
libvncserver/Makefile.am
+4
-4
No files found.
configure.ac
View file @
cb0340cc
...
@@ -146,7 +146,7 @@ something like libssl-dev) and run configure again.
...
@@ -146,7 +146,7 @@ something like libssl-dev) and run configure again.
[AC_DEFINE(HAVE_X509_PRINT_EX_FP) HAVE_X509_PRINT_EX_FP="true"], , $SSL_LIBS
[AC_DEFINE(HAVE_X509_PRINT_EX_FP) HAVE_X509_PRINT_EX_FP="true"], , $SSL_LIBS
)
)
fi
fi
AM_CONDITIONAL(HAVE_LIBSSL, test
"x$with_crypto" != "xno" -a "x$with_ssl" != "xno
")
AM_CONDITIONAL(HAVE_LIBSSL, test
! -z "$SSL_LIBS
")
# Checks for X libraries
# Checks for X libraries
HAVE_X11="false"
HAVE_X11="false"
...
@@ -796,6 +796,7 @@ if test "x$with_gnutls" != "xno"; then
...
@@ -796,6 +796,7 @@ if test "x$with_gnutls" != "xno"; then
AC_DEFINE(WITH_CLIENT_TLS)
AC_DEFINE(WITH_CLIENT_TLS)
fi
fi
fi
fi
AM_CONDITIONAL(HAVE_GNUTLS, test ! -z "$GNUTLS_LIBS")
# IPv6
# IPv6
AH_TEMPLATE(IPv6, [Enable IPv6 support])
AH_TEMPLATE(IPv6, [Enable IPv6 support])
...
...
libvncserver/Makefile.am
View file @
cb0340cc
...
@@ -17,11 +17,11 @@ if WITH_WEBSOCKETS
...
@@ -17,11 +17,11 @@ if WITH_WEBSOCKETS
if
HAVE_LIBSSL
if
HAVE_LIBSSL
WEBSOCKETSSSLSRCS
=
rfbssl_openssl.c
WEBSOCKETSSSLSRCS
=
rfbssl_openssl.c
else
else
#
if HAVE_GNUTLS
if
HAVE_GNUTLS
#
WEBSOCKETSSSLSRCS = rfbssl_gnutls.c
WEBSOCKETSSSLSRCS
=
rfbssl_gnutls.c
#
else
else
WEBSOCKETSSSLSRCS
=
rfbssl_none.c
WEBSOCKETSSSLSRCS
=
rfbssl_none.c
#
endif
endif
endif
endif
WEBSOCKETSSRCS
=
websockets.c ../common/md5.c ../common/sha1.c
$(WEBSOCKETSSSLSRCS)
WEBSOCKETSSRCS
=
websockets.c ../common/md5.c ../common/sha1.c
$(WEBSOCKETSSSLSRCS)
...
...
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