build: use allowed over enabled or not-disabled

Meson feature options are typically in a tri-state of enabled, disabled,
or auto.  The enabled and disabled functions on an option (from
`get_option`) no longer return true for auto features.  Instead, the
expectation is to use `allowed()` which is true for both enabled and
auto.

Switch all uses of `enabled` to `allowed`.
Switch all uses of `not disabled` to `allowed`.

Change-Id: If5d6047137a085eaa6a3de0580aff96488596825
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.build b/meson.build
index fa9c993..46d292f 100644
--- a/meson.build
+++ b/meson.build
@@ -28,7 +28,7 @@
 phosphor_logging = dependency('phosphor-logging')
 phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
 
-if not build_tests.disabled()
+if build_tests.allowed()
     subdir('test')
 endif
 
diff --git a/test/meson.build b/test/meson.build
index 0def0f8..802dbe3 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -30,7 +30,7 @@
 endif
 
 parser_build_arguments = []
-if get_option('ipz_ecc_check').enabled()
+if get_option('ipz_ecc_check').allowed()
     parser_build_arguments += ['-DIPZ_ECC_CHECK']
 endif
 
diff --git a/vpd-manager/meson.build b/vpd-manager/meson.build
index 4e9c10b..3a3710e 100644
--- a/vpd-manager/meson.build
+++ b/vpd-manager/meson.build
@@ -18,7 +18,7 @@
 parser_dependencies = [sdbusplus, libgpiodcxx, phosphor_logging, phosphor_dbus_interfaces]
 
 parser_build_arguments = []
-if get_option('ibm_system').enabled()
+if get_option('ibm_system').allowed()
     parser_build_arguments += ['-DIBM_SYSTEM']
 endif