diff options
author | Bjorn Stenberg <bjorn@haxx.se> | 2020-04-14 11:19:12 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-14 13:03:40 +0200 |
commit | 2522903b792ac5a802f780df60dc4647c58e2477 (patch) | |
tree | 4ccf24997d616fce58a798cbb3bcad3557e976db /configure.ac | |
parent | 8909865191072b6fc3e040ab0caccc2ec09d8763 (diff) | |
download | curl-2522903b792ac5a802f780df60dc4647c58e2477.tar.gz |
mqtt: add new experimental protocol
Closes #5173
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0479099e8..0213b1cc9 100755 --- a/configure.ac +++ b/configure.ac @@ -637,6 +637,22 @@ AC_HELP_STRING([--disable-gopher],[Disable Gopher support]), AC_MSG_RESULT(yes) ) +AC_MSG_CHECKING([whether to support mqtt]) +AC_ARG_ENABLE(mqtt, +AC_HELP_STRING([--enable-mqtt],[Enable MQTT support]) +AC_HELP_STRING([--disable-mqtt],[Disable MQTT support]), +[ case "$enableval" in + no) + AC_MSG_RESULT(no) + ;; + *) AC_MSG_RESULT(yes) + experimental="$experimental MQTT" + AC_DEFINE(CURL_ENABLE_MQTT, 1, [to enable MQTT]) + AC_SUBST(CURL_ENABLE_MQTT, [1]) + ;; + esac ], + AC_MSG_RESULT(no) +) dnl ********************************************************************** dnl Check for built-in manual @@ -4843,6 +4859,9 @@ fi if test "x$CURL_DISABLE_GOPHER" != "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS GOPHER" fi +if test "x$CURL_ENABLE_MQTT" = "x1"; then + SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS MQTT" +fi if test "x$CURL_DISABLE_POP3" != "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS POP3" if test "x$SSL_ENABLED" = "x1"; then |