Overview
Comment: | removed refs to SSL_CFLAGS |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
eb88a05f81fb2e64066306ba71d6faa1 |
User & Date: | aborr on 2000-05-04 20:12:50 |
Other Links: | manifest | tags |
Context
2000-05-04
| ||
20:21 | minor chnges to allow compilation with BSAFE or OpenSSL check-in: b26fff0537 user: aborr tags: trunk | |
20:12 | removed refs to SSL_CFLAGS check-in: eb88a05f81 user: aborr tags: trunk | |
20:10 | added code to select either OpenSSL or BSAFE SSL-C libraries check-in: e1543324d5 user: aborr tags: trunk | |
Changes
Modified Makefile.in from [b97b208259] to [635cbbab1c].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + | # Makefile.in -- # # This file is a Makefile for the tls Tcl extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # # Copyright (c) 1999-2000 Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # |
︙ | |||
58 59 60 61 62 63 64 | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | - | #======================================================================== SSL_DIR = @SSL_DIR@ SSL_LIB_DIR = @SSL_LIB_DIR@ SSL_INCLUDE_DIR = @SSL_INCLUDE_DIR@ SSL_INCLUDE_DIR_NATIVE = @SSL_INCLUDE_DIR_NATIVE@ SSL_INCLUDES = -I$(SSL_INCLUDE_DIR_NATIVE) |
︙ | |||
157 158 159 160 161 162 163 | 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | - + | AUTOCONF = autoconf LDFLAGS = $(LDFLAGS_DEFAULT) INCLUDES = @TCL_INCLUDES@ $(SSL_INCLUDES) |
︙ |