Add flags to Makefile.am to build as c++17 and header-only boost

As the project moves forward, we are updating it to use c++17 and some
of the features that it offers, as well as some more boost bits. This
patch makes sure that all the boost libraries are header only, adds in
c++17, and makes sure that the libraries required are linked properly.

Change-Id: I9a25ec971e4bf05c2c3b73e20938cf337e06077c
Signed-off-by: Vernon Mauery <vernon.mauery@intel.com>
diff --git a/configure.ac b/configure.ac
index 918aef7..73d63f6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,7 +40,7 @@
 )
 
 # Checks for typedefs, structures, and compiler characteristics.
-AX_CXX_COMPILE_STDCXX_14([noext])
+AX_CXX_COMPILE_STDCXX_17([noext])
 AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CFLAGS])
 AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])