174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
# For the OpenSSL version, I chose to use the same library names that
# OpenSSL uses as its default names.
#--------------------------------------------------------------------
if test "${TEA_PLATFORM}" = "windows" ; then
if test "$GCC" = "yes"; then
TEA_ADD_CFLAGS([${TCLTLS_SSL_CFLAGS}])
TEA_ADD_INCLUDES([${TCLTLS_SSL_CPPFLAGS}])
TEA_ADD_LIBS([${TCLTLS_SSL_LIBS}])
fi
else
TEA_ADD_CFLAGS([${TCLTLS_SSL_CFLAGS}])
TEA_ADD_INCLUDES([${TCLTLS_SSL_CPPFLAGS}])
TEA_ADD_LIBS([${TCLTLS_SSL_LIBS}])
fi
#--------------------------------------------------------------------
# Determine the name of the tclsh and/or wish executables in the
# Tcl and Tk build directories or the location they were installed
# into. These paths are used to support running test cases only,
|
|
|
|
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
# For the OpenSSL version, I chose to use the same library names that
# OpenSSL uses as its default names.
#--------------------------------------------------------------------
if test "${TEA_PLATFORM}" = "windows" ; then
if test "$GCC" = "yes"; then
TEA_ADD_CFLAGS([${TCLTLS_SSL_CFLAGS}])
TEA_ADD_INCLUDES([${TCLTLS_SSL_INCLUDES}])
TEA_ADD_LIBS([${TCLTLS_SSL_LIBS}])
fi
else
TEA_ADD_CFLAGS([${TCLTLS_SSL_CFLAGS}])
TEA_ADD_INCLUDES([${TCLTLS_SSL_INCLUDES}])
TEA_ADD_LIBS([${TCLTLS_SSL_LIBS}])
fi
#--------------------------------------------------------------------
# Determine the name of the tclsh and/or wish executables in the
# Tcl and Tk build directories or the location they were installed
# into. These paths are used to support running test cases only,
|