Android can now be configured dynamically, so remove the static config. For this we need to modify the socklen_t check #includes which appear to be wrong anyway. Signed-off-by: Aaron Carroll <aaronc@xxxxxxxxxxxxxxx> --- configure | 13 +------------ 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/configure b/configure index 965623d..2859891 100755 --- a/configure +++ b/configure @@ -233,16 +233,6 @@ CYGWIN*) echo "EXTFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak exit 0 ;; -Android) - output_sym "CONFIG_32BIT" - output_sym "CONFIG_LITTLE_ENDIAN" - output_sym "CONFIG_SOCKLEN_T" - output_sym "CONFIG_GETTIMEOFDAY" - output_sym "CONFIG_CLOCK_GETTIME" - output_sym "CONFIG_CLOCK_MONOTONIC" - echo "CC=$cc" >> $config_host_mak - echo "EXTFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak - exit 0 esac if test ! -z "$cpu" ; then @@ -874,8 +864,7 @@ echo "inet_aton $inet_aton" # socklen_t probe socklen_t="no" cat > $TMPC << EOF -#include <string.h> -#include <netinet/in.h> +#include <sys/socket.h> int main(int argc, char **argv) { socklen_t len = 0; -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html