You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GraphicsMagickSrc/magick/Makefile and GraphicsMagickSrc/coders/Makefile link to WIN32 libraries Advapi32 User32 Gdi32 and User32 Gdi32 OleAut32 respectively. Microsoft have these file names with a Capital letter on (case-insensitive) Windows. But MingW has these file names in lower case, which is a problem on (case-sensitive) Linux. The file names should be in lower case in the make file, this will be fine on both Windows and Linux.
GraphicsMagickSrc/ttf/builds/windows/ftdebug cannot compile in these circumstances. The folder is one of several that the GraphicsMagick distribution has, I believe these are intended to allow internal debugging of the GraphicsMagick library. I believe the folder can be removed from the ADSupport compilation.
hdf5src/h5win32defs.h declares struct timezone and struct timespec. But these structures are already declared by Linux headers which are used by MingW. This results in a redefinition error.
Issues I've identified: