X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=configure;h=517668233fc79cbddd6e41157c23957ee8ab95ee;hp=770678a27efb91293871cccdd3714573cda7cfba;hb=c0d3245a097f41441def6f912b79558cfb6dcf34;hpb=0cba0f919ee6af7dd65df436884336cff9c903f9 diff --git a/configure b/configure index 770678a2..51766823 100755 --- a/configure +++ b/configure @@ -135,7 +135,7 @@ show_help="no" exit_val=0 gfio_check="no" libhdfs="no" -disable_lex="no" +disable_lex="" prefix=/usr/local # parse options @@ -171,6 +171,8 @@ for opt do ;; --disable-lex) disable_lex="yes" ;; + --enable-lex) disable_lex="no" + ;; --disable-shm) no_shm="yes" ;; --disable-optimizations) disable_opt="yes" @@ -198,6 +200,7 @@ if test "$show_help" = "yes" ; then echo "--disable-gfapi Disable gfapi" echo "--enable-libhdfs Enable hdfs support" echo "--disable-lex Disable use of lex/yacc for math" + echo "--enable-lex Enable use of lex/yacc for math" echo "--disable-shm Disable SHM support" echo "--disable-optimizations Don't enable compiler optimizations" exit $exit_val @@ -240,6 +243,14 @@ fi # cross-compiling to one of these OSes then you'll need to specify # the correct CPU with the --cpu option. case $targetos in +AIX) + # Unless explicitly enabled, turn off lex. + if test -z "$disable_lex" ; then + disable_lex="yes" + else + force_no_lex_o="yes" + fi + ;; Darwin) # on Leopard most of the system is 32-bit, so we have to ask the kernel if # we can run 64-bit userspace code. @@ -460,7 +471,7 @@ echo "Wordsize $wordsize" # zlib probe zlib="no" cat > $TMPC < +#include int main(void) { z_stream stream; @@ -1455,7 +1466,7 @@ yacc="no" yacc_is_bison="no" lex="no" arith="no" -if test "$disable_lex" = "no"; then +if test "$disable_lex" = "no" || test -z "$disable_lex" ; then if test "$targetos" != "SunOS" ; then LEX=$(which lex 2> /dev/null) if test -x "$LEX" ; then @@ -1494,6 +1505,20 @@ fi fi fi +# Check if lex fails using -o +if test "$arith" = "yes" ; then +if test "$force_no_lex_o" = "yes" ; then + lex_use_o="no" +else +$LEX -o lex.yy.c exp/expression-parser.l 2> /dev/null +if test "$?" = "0" ; then + lex_use_o="yes" +else + lex_use_o="no" +fi +fi +fi + echo "lex/yacc for arithmetic $arith" ########################################## @@ -1756,6 +1781,9 @@ if test "$arith" = "yes" ; then else echo "YACC=$YACC" >> $config_host_mak fi + if test "$lex_use_o" = "yes" ; then + echo "CONFIG_LEX_USE_O=y" >> $config_host_mak + fi fi if test "$getmntent" = "yes" ; then output_sym "CONFIG_GETMNTENT"