From: Aaron Carroll Date: Mon, 18 Feb 2013 07:52:18 +0000 (+0100) Subject: configure: missing Android config options X-Git-Tag: fio-2.0.14~12 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=1e72a886a3eb4d27a5a2c3d6706a1a6a0d10023a;p=fio.git configure: missing Android config options We need this for the run-time endianness check to pass. Add supported clock monotonic while we're at it. Signed-off-by: Jens Axboe --- diff --git a/configure b/configure index 8267e1c0..caaf30e0 100755 --- a/configure +++ b/configure @@ -227,9 +227,11 @@ CYGWIN*) ;; 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 -DFIO_NO_HAVE_SHM_H -D_GNU_SOURCE" >> $config_host_mak exit 0