Check-in [ec53c2b85e]
Overview
Comment:Remove a version number fixups
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | openssl-1.1
Files: files | file ages | folders
SHA1: ec53c2b85e2db4e2d37c949b6a94f4fcd58e98f1
User & Date: rkeene on 2016-12-08 07:35:22
Other Links: branch diff | manifest | tags
Context
2016-12-08
07:37
Integrated OpenSSL 1.1 patches check-in: a23ed6f309 user: rkeene tags: trunk
07:35
Remove a version number fixups Closed-Leaf check-in: ec53c2b85e user: rkeene tags: openssl-1.1
07:32
Do not try to set memory functions -- prototype is broken in newer version and older versions have bugs related to it check-in: bbe273b3dc user: rkeene tags: openssl-1.1
Changes

Modified aclocal/tcltls_openssl.m4 from [1d21ae0afb] to [b0fa31c047].

120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
120
121
122
123
124
125
126

127



128
129
130
131
132
133
134







-

-
-
-







	AC_LINK_IFELSE([AC_LANG_PROGRAM([
#include <openssl/ssl.h>
#include <openssl/opensslv.h>
#if (SSLEAY_VERSION_NUMBER >= 0x0907000L)
# include <openssl/conf.h>
#endif
		], [
#if OPENSSL_VERSION_NUMBER < 0x10100000L
  SSL_library_init();
#else
  OPENSSL_init_ssl(0, NULL);
#endif
  SSL_load_error_strings();
		])], [
		AC_MSG_RESULT([yes])
	], [
		AC_MSG_RESULT([no])
		AC_MSG_ERROR([Unable to compile a basic program using OpenSSL])
	])