glob_path
static void glob_path ARGS((int, const char *, XPtrV *, const char *));
glob_path(flags, pat, &w, path);
glob_path(flags, pat, &w, fpath);
include_matched_path(char *glob_path)
if (lstat(glob_path, &sb) != 0) {
ERR("Error calling stat on path '%s': %s", glob_path,
DPRINTCONF("'%s' is not a file.", glob_path);
ERR("The matched path '%s' is not a regular file", glob_path);
DPRINTCONF("Include '%s'", glob_path);
tmp = glob_path;
glob_path = realpath(tmp, NULL);
if (check_no_reinclude(glob_path)) {
prepare_next_config(glob_path);
"chain", glob_path);
"dependency", glob_path);
free(glob_path);
glob_path = tmp;
check_no_reinclude(const char *glob_path)
char *abs_path = realpath(glob_path, NULL);
glob_path, strerror(errno));