Skip to content
Snippets Groups Projects
Unverified Commit eb2b2818 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

configure: --disable-progress-meter

parent 2011c3fe
No related branches found
No related tags found
No related merge requests found
......@@ -4114,6 +4114,24 @@ AC_HELP_STRING([--disable-netrc],[Disable netrc parsing]),
AC_MSG_RESULT(yes)
)
dnl ************************************************************
dnl disable progress-meter
dnl
AC_MSG_CHECKING([whether to support progress-meter])
AC_ARG_ENABLE(progress-meter,
AC_HELP_STRING([--enable-progress-meter],[Enable progress-meter])
AC_HELP_STRING([--disable-progress-meter],[Disable progress-meter]),
[ case "$enableval" in
no)
AC_MSG_RESULT(no)
AC_DEFINE(CURL_DISABLE_PROGRESS_METER, 1, [disable progress-meter])
;;
*) AC_MSG_RESULT(yes)
;;
esac ],
AC_MSG_RESULT(yes)
)
dnl ************************************************************
dnl disable shuffle DNS support
dnl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment