Overview
Comment: | Removed -DPRE_OPENSSL_0.9.4 flag from SSL_FLAGS. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
16b3254eba5c83ffc43031ed285692a1 |
User & Date: | aborr on 2000-01-22 05:19:58 |
Other Links: | manifest | tags |
Context
2000-01-24
| ||
20:17 | Build fixes for tls check-in: 32428d7230 user: wart tags: trunk | |
2000-01-22
| ||
05:19 | Removed -DPRE_OPENSSL_0.9.4 flag from SSL_FLAGS. check-in: 16b3254eba user: aborr tags: trunk | |
2000-01-20
| ||
02:01 | *** empty log message *** check-in: 6e8823945b user: aborr tags: trunk | |
Changes
Modified Makefile.in from [64405f388f] to [d300767a7d].
1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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. # | | | 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. # # RCS: @(#) $Id: Makefile.in,v 1.3 2000/01/22 05:19:58 aborr Exp $ lib_BINARIES=$(tls_LIB_FILE) BINARIES=$(lib_BINARIES) #======================================================================== # Enumerate the names of the source files included in this package. |
︙ | ︙ | |||
58 59 60 61 62 63 64 | #======================================================================== 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) | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | #======================================================================== 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) SSL_CFLAGS = -DNO_PATENTS #======================================================================== # This is boilerplate from the sample tcl extension Makefile.in: # Nothing of the variables below this line need to be changed. Please # check the TARGETS section below to make sure the make targets are # correct. |
︙ | ︙ |