private static string basedir = null;
private static string[] defines;
private static bool enable_checking;
- private static bool deprecated;
private static bool experimental;
private static bool experimental_non_null = false;
private static bool disable_dbus_transformation;
{ "basedir", 'b', 0, OptionArg.FILENAME, ref basedir, "Base source directory", "DIRECTORY" },
{ "define", 'D', 0, OptionArg.STRING_ARRAY, ref defines, "Define SYMBOL", "SYMBOL..." },
{ "enable-checking", 0, 0, OptionArg.NONE, ref enable_checking, "Enable additional run-time checks", null },
- { "enable-deprecated", 0, 0, OptionArg.NONE, ref deprecated, "Enable deprecated features", null },
{ "enable-experimental", 0, 0, OptionArg.NONE, ref experimental, "Enable experimental features", null },
{ "enable-experimental-non-null", 0, 0, OptionArg.NONE, ref experimental_non_null, "Enable experimental enhancements for non-null types", null },
{ "disable-dbus-transformation", 0, 0, OptionArg.NONE, ref disable_dbus_transformation, "Disable transformation of D-Bus member names", null },
settings.pluginargs = this.pluginargs;
settings.enable_checking = enable_checking;
- settings.deprecated = deprecated;
settings.experimental = experimental;
settings.experimental_non_null = experimental_non_null;
settings.disable_dbus_transformation = disable_dbus_transformation;