Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8354e6a9
Commit
8354e6a9
authored
May 13, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Improve the libcrypto checks.
parent
954d6e2e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
netconnection.c
dlls/wininet/netconnection.c
+1
-1
No files found.
configure
View file @
8354e6a9
...
@@ -15818,7 +15818,7 @@ _ACEOF
...
@@ -15818,7 +15818,7 @@ _ACEOF
fi
fi
fi
fi
if
test
"x
$ac_cv_lib_soname_ssl
"
=
"x"
;
then
if
test
"x
$ac_cv_lib_soname_ssl
"
=
"x"
-o
"x
$ac_cv_lib_soname_crypto
"
=
"x"
;
then
case
"x
$with_openssl
"
in
case
"x
$with_openssl
"
in
x
)
wine_notices
=
"
$wine_notices
|OpenSSL development files not found, SSL won't be supported."
;;
x
)
wine_notices
=
"
$wine_notices
|OpenSSL development files not found, SSL won't be supported."
;;
xno
)
;;
xno
)
;;
...
...
configure.ac
View file @
8354e6a9
...
@@ -1171,7 +1171,7 @@ then
...
@@ -1171,7 +1171,7 @@ then
WINE_CHECK_SONAME(ssl,SSL_library_init)
WINE_CHECK_SONAME(ssl,SSL_library_init)
WINE_CHECK_SONAME(crypto,BIO_new_socket)
WINE_CHECK_SONAME(crypto,BIO_new_socket)
fi
fi
WINE_NOTICE_WITH(openssl,[test "x$ac_cv_lib_soname_ssl" = "x"],
WINE_NOTICE_WITH(openssl,[test "x$ac_cv_lib_soname_ssl" = "x"
-o "x$ac_cv_lib_soname_crypto" = "x"
],
[OpenSSL development files not found, SSL won't be supported.])
[OpenSSL development files not found, SSL won't be supported.])
dnl **** Check for libjpeg ****
dnl **** Check for libjpeg ****
...
...
dlls/wininet/netconnection.c
View file @
8354e6a9
...
@@ -119,7 +119,7 @@ BOOL NETCON_init(WININET_NETCONNECTION *connection, BOOL useSSL)
...
@@ -119,7 +119,7 @@ BOOL NETCON_init(WININET_NETCONNECTION *connection, BOOL useSSL)
connection
->
socketFD
=
-
1
;
connection
->
socketFD
=
-
1
;
if
(
useSSL
)
if
(
useSSL
)
{
{
#if
def SONAME_LIBSSL
#if
defined(SONAME_LIBSSL) && defined(SONAME_LIBCRYPTO)
TRACE
(
"using SSL connection
\n
"
);
TRACE
(
"using SSL connection
\n
"
);
if
(
OpenSSL_ssl_handle
)
/* already initialized everything */
if
(
OpenSSL_ssl_handle
)
/* already initialized everything */
return
TRUE
;
return
TRUE
;
...
...
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