diff options
author | Patrick Venture <venture@google.com> | 2018-09-14 17:57:42 -0700 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2018-09-20 18:32:40 -0700 |
commit | c0f499b594b158bdb6c61764c27729fef6837cd3 (patch) | |
tree | 5fc12741ebe4ee272383fc6d71529ea237053729 /configure.ac | |
parent | f222cf51d4801f3bda3ba1e2e57a898d3da11bb1 (diff) | |
download | phosphor-ipmi-blobs-c0f499b594b158bdb6c61764c27729fef6837cd3.tar.gz phosphor-ipmi-blobs-c0f499b594b158bdb6c61764c27729fef6837cd3.zip |
add example handler
This adds an example handler to demonstrate how one can add a specific
type of BLOB handler.
Change-Id: Ib5421f1b945b45998b40d3939a4dab9cdf39aaa9
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 186c711..7ef48a4 100644 --- a/configure.ac +++ b/configure.ac @@ -53,6 +53,12 @@ AS_IF([test "x$enable_oe_sdk" == "xyes"], AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) ) +# Do you want to include the example blob handler? +AC_ARG_ENABLE([example], + AS_HELP_STRING([--enable-example], [Enable example blob handler]) +) +AM_CONDITIONAL(ENABLE_EXAMPLE, [test "x$enable_example" = "xyes"]) + # Create configured output AC_CONFIG_FILES([Makefile test/Makefile]) AC_OUTPUT |