serge-rgb / milton

An infinite-canvas paint program
GNU General Public License v3.0
1.53k stars 133 forks source link

src/system_includes.h #include's unused intrinsic headers #125

Open danfe opened 5 years ago

danfe commented 5 years ago

When trying to build the program on PowerPC, compilaton failed because of x86-specific header files for intrinsics. However, they seem to be unused, as removing these includes from src/system_includes.h allowed to build Miton just fine. Consider the following pseudo-patch:

-#include <xmmintrin.h>
-#include <emmintrin.h>