In GetConfigurePaths() in configure.c, this code which handles the HOME and USERPROFILES variables seems to be written only for Linux.
Code: Select all
/*
Search $HOME/.magick.
*/
(void) FormatMagickString(path,MaxTextExtent,"%s%s%s",home,
*home == '/' ? "/.magick" : "",DirectorySeparator);
According to the docs in http://imagemagick.org/script/resources.php, this particular search is only done for an uninstalled version, but it is actually done for both installed and uninstalled versions and it would be useful if it stayed that way (after it's corrected) so that a .magick subdirectory of the USERPROFILE directory is allowed for either type of install.
Pete