On Wed, Jan 25, 2017 at 02:07:42AM +0100, Alexander Shendi wrote: > (*) see attached log at: > http://www.alexshendi.org/tmp/android-check-20170125.txt
It looks like HAVE_SETENV is not defined on Android. I don't know if that's intentional or not, but perhaps you can give the attached patch a try? Cheers, Peter
diff --git a/Makefile.android b/Makefile.android index c292a39..b738f08 100644 --- a/Makefile.android +++ b/Makefile.android @@ -80,6 +80,7 @@ chicken-config.h: chicken-defaults.h echo "#define HAVE_STRTOQ 1" >>$@ echo "#define HAVE_SYS_STAT_H 1" >>$@ echo "#define HAVE_SYS_TYPES_H 1" >>$@ + echo "#define HAVE_SETENV 1" >>$@ echo "#define HAVE_UNISTD_H 1" >>$@ echo "#define HAVE_UNSIGNED_LONG_LONG 1" >>$@ echo "#define STDC_HEADERS 1" >>$@
signature.asc
Description: Digital signature
_______________________________________________ Chicken-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-users
