215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
TEA_ADD_LIBS([${LD_SEARCH_FLAGS} -L${SSL_LIB_DIR} -lssl -lcrypto ${GCCPATH} ${GCCLIB}])
else
TEA_ADD_INCLUDES([-I${SSL_INCLUDE_DIR}])
TEA_ADD_LIBS([${LD_SEARCH_FLAGS} -L${SSL_LIB_DIR} -lsslc])
fi
fi
if test "${SHARED_BUILD}" = "1" ; then
AC_SUBST(TCLEXT_BUILD,"shared")
else
AC_SUBST(TCLEXT_BUILD,"static")
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,
# the Makefile should not be making use of these paths to generate
# a pkgIndex.tcl file or anything else at extension build time.
#--------------------------------------------------------------------
|
<
<
<
<
<
<
|
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
TEA_ADD_LIBS([${LD_SEARCH_FLAGS} -L${SSL_LIB_DIR} -lssl -lcrypto ${GCCPATH} ${GCCLIB}])
else
TEA_ADD_INCLUDES([-I${SSL_INCLUDE_DIR}])
TEA_ADD_LIBS([${LD_SEARCH_FLAGS} -L${SSL_LIB_DIR} -lsslc])
fi
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,
# the Makefile should not be making use of these paths to generate
# a pkgIndex.tcl file or anything else at extension build time.
#--------------------------------------------------------------------
|