Overview
Comment: | TclTLS 1.7.19 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 | tls-1-7-19 |
Files: | files | file ages | folders |
SHA3-256: |
3d0bcddafdef9acbe707f5357ac1c332 |
User & Date: | rkeene on 2019-06-19 18:25:03 |
Other Links: | branch diff | manifest | tags |
Context
2019-11-15
| ||
16:40 | Merged in trunk check-in: 5ee220305f user: rkeene tags: tls-1-7 | |
2019-06-19
| ||
18:25 | TclTLS 1.7.19 check-in: 3d0bcddafd user: rkeene tags: tls-1-7, tls-1-7-19 | |
18:13 | Update autoconf scripts from repo check-in: 5bd22a4abd user: rkeene tags: trunk | |
2019-04-25
| ||
16:51 | TclTLS 1.7.18 check-in: fb6a7404da user: rkeene tags: tls-1-7, tls-1-7-18 | |
Changes
Modified Makefile.in from [cdaa02b7ca] to [f57a276544].
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + + | @EXTENSION_TARGET@: @TCLEXT_BUILD@-@EXTENSION_TARGET@ mv @TCLEXT_BUILD@-@EXTENSION_TARGET@ @EXTENSION_TARGET@ # The shared object target shared-@EXTENSION_TARGET@: tls.o tlsBIO.o tlsIO.o tlsX509.o Makefile $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o shared-@EXTENSION_TARGET@ tls.o tlsBIO.o tlsIO.o tlsX509.o $(LIBS) -@WEAKENSYMS@ shared-@EXTENSION_TARGET@ -@REMOVESYMS@ shared-@EXTENSION_TARGET@ # The static target static-@EXTENSION_TARGET@: tls.o tlsBIO.o tlsIO.o tlsX509.o Makefile $(AR) rcu static-@EXTENSION_TARGET@ tls.o tlsBIO.o tlsIO.o tlsX509.o -$(RANLIB) static-@EXTENSION_TARGET@ # Dependencies for all our targets |
︙ |
Modified aclocal/ax_check_compile_flag.m4 from [6df59989e5] to [80cde85a08].
1 | 1 2 3 4 5 6 7 8 9 | - + | # =========================================================================== |
︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - - - - - - + - - - - - - - + - - - - - - - - - - - + + - + | # macro in sync with AX_CHECK_{PREPROC,LINK}_FLAG. # # LICENSE # # Copyright (c) 2008 Guido U. Draheim <[email protected]> # Copyright (c) 2011 Maarten Bosmans <[email protected]> # |
︙ |
Modified aclocal/shobj.m4 from [00e2f95c18] to [2123b62392].
︙ | |||
110 111 112 113 114 115 116 | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | + - - - - - - - - + + + + + + + + - + - + + | AC_LANG_POP(C) unset tryrpath ]) LDFLAGS="$OLD_LDFLAGS" unset OLD_LDFLAGS if test -n "$rsk_cv_link_set_rpath"; then |
︙ | |||
160 161 162 163 164 165 166 | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | - | *) SHOBJEXT="sl" ;; esac ;; mingw32|mingw32msvc*) SHOBJEXT="dll" |
︙ |
Modified aclocal/tcltls_openssl.m4 from [c4132f494e] to [3644ca7551].
︙ | |||
115 116 117 118 119 120 121 | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | - - + + | if test -z "$TCLTLS_SSL_CPPFLAGS"; then TCLTLS_SSL_CPPFLAGS="`"${PKGCONFIG}" openssl --cflags-only-I $pkgConfigExtraArgs`" || AC_MSG_ERROR([Unable to get OpenSSL Configuration]) fi PKG_CONFIG_PATH="${PKG_CONFIG_PATH_SAVE}" if test "$TCLEXT_BUILD" = "static"; then dnl If we are doing a static build, save the linker flags for other programs to consume |
︙ |
Modified configure.ac from [b77cac0912] to [469bbdcdbf].
1 | 1 2 3 4 5 6 7 8 9 | - + | dnl Define ourselves |
︙ | |||
177 178 179 180 181 182 183 | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | + + + + + + + + + + + + + + + - - - + + + + | AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"]) AX_CHECK_COMPILE_FLAG([-W], [ CFLAGS="$CFLAGS -W" AX_CHECK_COMPILE_FLAG([-Wno-self-assign], [CFLAGS="$CFLAGS -Wno-self-assign"]) ]) dnl Enable hardening tcltls_enable_hardening='auto' AC_ARG_ENABLE([hardening], AS_HELP_STRING([--disable-hardening], [disable hardening attempts]), [ tcltls_enable_hardening="$enableval" ]) if test "$tcltls_enable_hardening" = 'auto'; then tcltls_enable_hardening='true' if test "$TCLEXT_BUILD" = 'static'; then tcltls_enable_hardening='false' fi elif test "$tcltls_enable_hardening" = 'yes'; then tcltls_enable_hardening='true' else tcltls_enable_hardening='false' fi if test "$tcltls_enable_hardening" = 'true'; then |
︙ | |||
224 225 226 227 228 229 230 231 232 | 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | + + + + + + + - + | if test "$TCLEXT_BUILD" != 'static'; then if test "$TCLEXT_TLS_STATIC_SSL" = 'yes'; then DC_SYNC_RPATH([no]) else DC_SYNC_RPATH([yes]) fi fi dnl Enable a stable ABI DC_SETUP_STABLE_API([${srcdir}/tcltls.vers], tcltls.syms) if test "$tcltls_debug" = 'true'; then WEAKENSYMS=':' REMOVESYMS=':' fi dnl Produce output |
Added tcltls.syms.in version [f4a8c433c1].
Added tcltls.vers version [f9f493f912].