From: Florian Forster Date: Thu, 26 Sep 2013 17:28:19 +0000 (+0200) Subject: configure.in: Move the useragent config to a more appropriate block. X-Git-Tag: collectd-5.5.0~344 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=23a9e650caa712012d696de3d64dfe2a2517e268;p=collectd.git configure.in: Move the useragent config to a more appropriate block. --- diff --git a/configure.in b/configure.in index e137dabd..153bac40 100644 --- a/configure.in +++ b/configure.in @@ -1121,6 +1121,17 @@ else AC_MSG_ERROR([Didn't find out how doubles are stored in memory. Sorry.]) fi; fi; fi +# --with-useragent {{{ +AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=AGENT@:>@], [User agent to use on http requests])], +[ + if test "x$withval" != "xno" && test "x$withval" != "xyes" + then + AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests]) + fi +]) + +# }}} + have_getfsstat="no" AC_CHECK_FUNCS(getfsstat, [have_getfsstat="yes"]) have_getvfsstat="no" @@ -1665,17 +1676,6 @@ fi AM_CONDITIONAL(BUILD_WITH_LIBCURL, test "x$with_libcurl" = "xyes") # }}} -# --with-useragent {{{ -AC_ARG_WITH(useragent, [AS_HELP_STRING([--with-useragent@<:@=OPTIONS@:>@], [User agent to use on http requests])], -[ - if test "x$withval" != "xno" && test "x$withval" != "xyes" - then - AC_DEFINE_UNQUOTED(COLLECTD_USERAGENT, ["$withval"], [User agent for http requests]) - fi -]) - -# }}} - # --with-libdbi {{{ with_libdbi_cppflags="" with_libdbi_ldflags=""