Overview
Comment: | Better handling of shared linking and TCL_PACKAGE_PATH |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
71730030d6be17962adf6c8b47bcfeee |
User & Date: | rkeene on 2019-06-12 22:02:57 |
Other Links: | manifest | tags |
Context
2019-06-12
| ||
22:06 | Added TclPKCS11 package check-in: 9c31bfe7cb user: rkeene tags: trunk | |
22:02 | Better handling of shared linking and TCL_PACKAGE_PATH check-in: 71730030d6 user: rkeene tags: trunk | |
2019-05-09
| ||
21:53 | Updated to NSF 2.3.0 release check-in: ea086b4b2b user: ssoberni tags: trunk | |
Changes
Modified common/common.sh from [e672e78acf] to [5c91dc1965].
︙ | |||
148 149 150 151 152 153 154 155 156 157 158 159 160 161 | 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | + + | function configure() { local tryopts tryopt local staticpkg staticpkgvar local isshared local save_cflags local base_var kc_var local configure_opt configure_opts configure_opts_new local ignore_opt ignore_this_opt # Determine if the user decided this should be static or not staticpkgvar="$(echo "STATIC${internalpkgname}" | dd conv=ucase 2>/dev/null)" staticpkg="$(eval "echo \"\$${staticpkgvar}\"")" # Determine if the build script overrides this if [ "${pkg_always_static}" = '1' ]; then |
︙ | |||
170 171 172 173 174 175 176 | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | - + + + - + - + - + - + | if [ -n "${kc_var_val}" ]; then eval "${base_var}=\"\$${base_var} \$${kc_var}\"; export ${base_var}" fi done # Determine if we should enable shared or not if [ "${staticpkg}" = "0" ]; then |
︙ | |||
221 222 223 224 225 226 227 | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | - + + + + + + + + + + + + + + + + + + + + + | sed 's@XXX_TCL_STUBS@USE_TCL_STUBS@g' configure > configure.new fi cat configure.new > configure rm -f configure.new fi |
︙ | |||
249 250 251 252 253 254 255 | 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | - + | function preinstall() { : } function install() { mkdir -p "${installdir}/lib" || return 1 |
︙ |