Dan Kalowsky wrote: [snip]
> - is there a way to pre-define many of the many of the defines for an EROS > specific build? I.E. we know that gettext does not exist on EROS, but > all checks discover it because of the host OS having it Do you mean anything like a cache file containing the results of your tests so that configure doesn't run the tests itself? You can e.g. add the following lines to your config.site file: # we have memcpy() ac_cv_func_memcpy=yes # but we don't have bzero() ac_cv_func_bzero=no [snip] Bye, Andreas
