Displaying 1 result from an estimated 1 matches for "progress_meter".
2000 Aug 24
0
patch for a few things
...S -L/usr/local/lib -R/usr/local/lib"
need_dash_r=1
# hardwire lastlog location (can't detect it on some versions)
conf_lastlog_location="/var/adm/lastlog"
***************
*** 1097,1102 ****
--- 1097,1119 ----
]
)
+ # Display scp progress-meter by default or not
+ PROGRESS_METER="yes"
+ AC_MSG_CHECKING(whether to enable progress-meter by default)
+ AC_ARG_WITH(progress-meter,
+ [ --without-progress-meter Don't display scp progress-meter by default],
+ [
+ if test "x$withval" = "xno" ; then
+ PROGRESS_METER="no"
+ AC...