build: allow flex-2.34 together with bison-2.3
authorStefan Metzmacher <metze@samba.org>
Fri, 1 Aug 2008 09:16:14 +0000 (11:16 +0200)
committerStefan Metzmacher <metze@samba.org>
Fri, 1 Aug 2008 14:10:59 +0000 (16:10 +0200)
metze

source/build/make/lex_compile.sh
source/build/make/yacc_compile.sh
source/heimdal_build/internal.m4

index 9bba7257b191238255b6b6d8f86e6a3b13f12780..d05056d1007a97c340df4845d1a78207a702b93b 100755 (executable)
@@ -31,20 +31,29 @@ if [ -r $DEST ]; then
        fi
 fi
 TOP=`pwd`
+echo "info: running $LEX $ARGS $file"
 if cd $dir && $LEX $ARGS $file; then
-       if [ -r $base.yy.c ];then
+       if [ -r lex.yy.c ];then
                # we must guarantee that config.h comes first
+               echo "info: move lex.yy.c to $base.c"
+               echo "#include \"config.h\"" > $base.c
+               sed -e "s|lex\.yy\.c|$DEST|" lex.yy.c >> $base.c
+               rm -f $base.yy.c
+       elif [ -r $base.yy.c ];then
+               # we must guarantee that config.h comes first
+               echo "info: move $base.yy.c to $base.c"
                echo "#include \"config.h\"" > $base.c
                sed -e "s|$base\.yy\.c|$DEST|" $base.yy.c >> $base.c
                rm -f $base.yy.c
        elif [ -r $base.c ];then
                # we must guarantee that config.h comes first
+               echo "info: add #include \"config.h\" to $base.c"
                mv $base.c $base.c.tmp
                echo "#include \"config.h\"" > $base.c
                sed -e "s|$base\.yy\.c|$DEST|" $base.c.tmp >> $base.c
                rm -f $base.c.tmp
        elif [ ! -r base.c ]; then
-               echo "$base.c nor $base.yy.c generated."
+               echo "$base.c nor $base.yy.c nor lex.yy.c generated."
                exit 1
        fi
 fi
index a56a51da0a8b0cb8fe73e09dd365f32f12e95810..ac4afea3f6094b943cea6f5b8b163622e958b105 100755 (executable)
@@ -29,10 +29,12 @@ if [ -r $DEST ]; then
        fi
 fi
 TOP=`pwd`
+echo "info: running $YACC -d $file"
 if cd $dir && $YACC -d $file; then
        if [ -r y.tab.h -a -r y.tab.c ];then
-               #echo "info: move files"
+               echo "info: move y.tab.h to $base.h"
                sed -e "/^#/!b" -e "s|y\.tab\.h|$SRC|" -e "s|\"$base.y|\"$SRC|"  y.tab.h > $base.h
+               echo "info: move y.tab.c to $base.c"
                sed -e "s|y\.tab\.c|$SRC|" -e "s|\"$base.y|\"$SRC|" y.tab.c > $base.c
                rm -f y.tab.c y.tab.h
        elif [ ! -r $base.h -a ! -r $base.c]; then
index 18ecbb75cdb56085d09eb5a5b61190887db90732..e1e495d69bb33ee4ce0a767f483bd34efb3da8c8 100644 (file)
@@ -186,6 +186,7 @@ SMB_ENABLE(compile_et, NO)
 #
 LEX_YACC_COMBINATIONS=""
 LEX_YACC_COMBINATIONS="$LEX_YACC_COMBINATIONS flex-2.5.33:bison-2.3"
+LEX_YACC_COMBINATIONS="$LEX_YACC_COMBINATIONS flex-2.5.34:bison-2.3"
 
 AC_PROG_LEX
 LEX_BASENAME=`basename "$LEX"`