Just a quick question for other users of ARM based machines: Should the ape/lib/openssl be ignored for ARM, or is there a decent alternative for objtype=arm when trying to build it? The current build fails as /sys/include/ape/openssl/opensslconf.h errors out with 'unknown objtype'.
Otherwise, I can get ape/lib/openssl to build (though not necessarily be viable) by the subtle change below: term% cd /sys/include/ape/openssl term% diffy opensslconf.h 85c85,86 < #if defined(PLAN9) && defined(T386) --- > #if defined(PLAN9) > #if defined(T386) 86a88,89 > #elif defined(Tarm) > #define ARM_ONLY 89a93,94 > #endif > This small change has made it a lot easier to populate my arm tree.