Cannot build libx11 1.6.8 without libc.a
makekeys
is built using libtool -all-static
, so if libc.a
isn't available then the build will fail.
-all-static
is passed to solve a problem when cross-compiling for Windows. This seems like a very blunt hammer, @jturney can you expand on why this was needed and what the alternatives would be?