Check-in [0d87394f84]
Overview
Comment:Updated to set RPATH by default for non-static builds
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | tls-1-7
Files: files | file ages | folders
SHA1: 0d87394f8407f534d0aa870d9da133b063a930a6
User & Date: rkeene on 2016-12-07 18:12:50
Other Links: branch diff | manifest | tags
Context
2016-12-07
18:19
Updated autoconf macro to deal with RPATH better check-in: e7e20d5486 user: rkeene tags: tls-1-7
18:12
Updated to set RPATH by default for non-static builds check-in: 0d87394f84 user: rkeene tags: tls-1-7
18:11
Added support for statically linking to the SSL library check-in: bba90634b2 user: rkeene tags: tls-1-7
Changes

Modified configure.in from [eb7a77895b] to [f1f4c072ab].

154
155
156
157
158
159
160













161
162
163
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176







+
+
+
+
+
+
+
+
+
+
+
+
+



)
dnl Determine how to use this SSL library
AC_MSG_CHECKING([how to use $tcltls_ssl_lib])
LIBS="${LIBS} ${TCLTLS_SSL_LIBS}"
CFLAGS="${CFLAGS} ${TCLTLS_SSL_CFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TCLTLS_SSL_CPPFLAGS}"
AC_MSG_RESULT([$TCLTLS_SSL_CPPFLAGS $TCLTLS_SSL_CFLAGS $TCLTLS_SSL_LIBS])

dnl Sync the RPATH if requested
if test "$TCLEXT_BUILD" != 'static'; then
	tcltls_rpath='yes'
	AC_ARG_ENABLE([rpath], AS_HELP_STRING([--disable-rpath], [disable setting of rpath]), [
		if test "$enableval" = 'no'; then
			tcltls_rpath='no'
		fi
	])
	if test "$tcltls_rpath" = 'yes'; then
		DC_SYNC_RPATH
	fi
fi

dnl Produce output
AC_OUTPUT(Makefile pkgIndex.tcl)