Check-in [5ea4704c46]
Overview
Comment:Added configure switch for enabling use of patented encryption code (--with-patents)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 5ea4704c4626e3bab2a1d3860e2b1416735b701c
User & Date: wart on 2000-02-09 21:19:24
Other Links: manifest | tags
Context
2000-02-17
03:30
initial checkin of test cases for tls::ciphers check-in: f222d012c0 user: aborr tags: trunk, scriptics-sc-2-0-b1, scriptics-sc-2-0-b2, scriptics-sc-2-0-b5
2000-02-09
21:19
Added configure switch for enabling use of patented encryption code (--with-patents) check-in: 5ea4704c46 user: wart tags: trunk
2000-02-06
00:57
Rearranged build/install files to use a shared config module check-in: 3c5ede3c8b user: wart tags: trunk
Changes

Modified Makefile.in from [fc076e746b] to [35f5284254].

1
2
3
4
5
6
7
8
9
10
11
12
13
14

15
16
17
18
19
20
21
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.5 2000/02/06 00:57:35 wart Exp $
# RCS: @(#) $Id: Makefile.in,v 1.6 2000/02/09 21:19:24 wart 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
65

66
67
68
69
70
71
72
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
SSL_CFLAGS =		@SSL_CFLAGS@


#========================================================================
# 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.

Modified configure.in from [96dc026b76] to [8fe74b7f50].

62
63
64
65
66
67
68








69
70
71
72
73
74
75
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83







+
+
+
+
+
+
+
+








SSL_LIB_DIR=${SSL_DIR}/lib
SSL_INCLUDE_DIR=${SSL_DIR}/include

AC_SUBST(SSL_DIR)
AC_SUBST(SSL_LIB_DIR)
AC_SUBST(SSL_INCLUDE_DIR)

#--------------------------------------------------------------------
# Determine if we should use the patented encryption code
#--------------------------------------------------------------------

AC_ARG_WITH(patents, [  --with-patents=yes|no    Turn on/off the patented encryption code.  Default is no patents], SSL_CFLAGS="", SSL_CFLAGS="-DNO_PATENTS")

AC_SUBST(SSL_CFLAGS)

#--------------------------------------------------------------------
# Check whether --enable-gcc or --disable-gcc was given.  Do this 
# before AC_CYGWIN is called so the compiler can be fully tested by
# built-in autoconf tools.  This macro also calls AC_PROG_CC to set
# the compiler if --enable-gcc was not used.
#--------------------------------------------------------------------