static void
pkg_config_value_free(struct pkg_config_value *v)
{
if (v == NULL)
return;
free(v->value);
free(v);
}