build: pkg anti-pattern: use defaults

Use the defaults in the pkg check where the default error message is
sufficient to identify which package is missing.

Change-Id: Ide33a6c676d6b4db07a10aeb35e5076f9b3aeb91
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/configure.ac b/configure.ac
index 10c8d06..ba8b188 100644
--- a/configure.ac
+++ b/configure.ac
@@ -51,14 +51,9 @@
 )
 AS_IF([test "x$enable_virtual_pnor" == "xyes"],
     [
-        PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus],,\
-                          AC_MSG_ERROR(["Requires sdbusplus package."]))
-
-        PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],,\
-                          AC_MSG_ERROR(["Requires phosphor-logging package."]))
-
-        AX_PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [],[phosphor-dbus-interfaces],\
-                             [], [AC_MSG_ERROR(["phosphor-dbus-interfaces required and not found."])])
+        PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus])
+        PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
+        AX_PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [],[phosphor-dbus-interfaces])
 
         AM_CONDITIONAL(VIRTUAL_PNOR_ENABLED, true)
         AX_APPEND_COMPILE_FLAGS([-DVIRTUAL_PNOR_ENABLED], [CXXFLAGS])