Differences From Artifact [aa7905f86b]:
- Executable file utils/mk_wrapper — part of check-in [38a8d8c4ea] at 2021-04-06 13:30:18 on branch v1.65 — made the sourcing of cfg.sh not dependent on LD_LIBRARY_PATH being set (user: mmgraham, size: 3093) [annotate] [blame] [check-ins using]
To Artifact [4fc79e58e7]:
- Executable file utils/mk_wrapper — part of check-in [5ef2e6042b] at 2021-04-23 14:55:50 on branch v1.65 — Adjusted server startup timing values. Changed CHECK to be a failing status for prereq. Moved some debug messages to higher debug levels. Added unsetting of HTTP_PROXY env vars. (user: mmgraham, size: 3231) [annotate] [blame] [check-ins using] [more...]
︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | + + + + + + + + + | if [ "\$LD_LIBRARY_PATH" != "" ];then export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:\$LD_LIBRARY_PATH:$libdir else export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$libdir fi export MT_SQLITE3_EXE=$sqlite3_exe http_vars="http_proxy https_proxy HTTP_PROXY HTTPS_PROXY" for i in \$http_vars do j=\${!i} if [ "\$j" != "" ]; then unset \$i fi done __EOF ) > $cfgfile echo else echo "INFO: LD_LIBRARY_PATH not set" >&2 fi |
︙ |