summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9153bfd)
raw | patch | inline | side by side (parent: 9153bfd)
author | Florian Forster <octo@collectd.org> | |
Thu, 26 Sep 2013 17:28:19 +0000 (19:28 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Thu, 26 Sep 2013 17:28:19 +0000 (19:28 +0200) |
configure.in | patch | blob | history |
diff --git a/configure.in b/configure.in
index e137dabd9eb1c4ed6f02fc890865deca63ed0001..153bac4073f4809a4185eb920ea3207bd96c4cab 100644 (file)
--- a/configure.in
+++ b/configure.in
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"
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=""