It seems you don't have flex neither bison installed on your system. Flex is a lexical analyser generator, and Bison is a parser generator. There are respectively open-source successors to Unix lex and yacc.
You will find plenty of information or tutorials on the Internet if you want to. Here is one of my favorites links: http://epaperpress.com/lexandyacc/index.html Regarding your current problem, you can either: - install the rpm's that are needed, probably flex-???.rpm and bison-???.rpm from your Linux CD(s) - get flex and bison at ftp://ftp.gnu.org/non-gnu/flex/flex-2.5.4a.tar.gz and ftp://ftp.gnu.org/gnu/bison/bison-1.29.tar.gz, and build/install the two packages (extract, do "./configure", then do "make install", as usual). Jean Tabel [EMAIL PROTECTED] "Marco Orsuni" <[EMAIL PROTECTED]> wrote in message 001a01c15c5a$aed2b0e0$770250a0@ised0">news:001a01c15c5a$aed2b0e0$770250a0@ised0... > Hallo, > I have problems installing php in Linux Mandrake 7.2. > > Php work, but I can't see the oracle funcions. I guessed I had to recompile > the source. > > I have downloaded the latest version of php from php.net. > > I unzipped the file in /tmp but when I write "./configure" the program go in > abend with this message: > > creating cache ./config.cache > checking for a BSD compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking whether make sets ${MAKE}... yes > checking for working aclocal... missing > checking for working autoconf... missing > checking for working automake... missing > checking for working autoheader... missing > checking for working makeinfo... missing > Updated php_version.h > checking whether to enable maintainer-specific portions of Makefiles... no > checking host system type... i586-pc-linux-gnu > checking for gawk... gawk > checking for bison... no > checking for byacc... no > configure: warning: You will need bison if you want to regenerate the PHP > parsers. > checking for gcc... gcc > checking whether the C compiler (gcc ) works... yes > checking whether the C compiler (gcc ) is a cross-compiler... no > checking whether we are using GNU C... yes > checking whether gcc accepts -g... yes > checking how to run the C preprocessor... gcc -E > checking for AIX... no > checking for gcc option to accept ANSI C... none needed > checking for ranlib... ranlib > checking whether gcc and cc understand -c and -o together... yes > checking whether ln -s works... yes > checking for flex... lex > checking for yywrap in -ll... no > checking lex output file root... ./configure: lex: command not found > configure: error: cannot find output from lex; giving up > > what is lex??? and where I did wrong? > > thank you very much. Bye > > Marco R. > > > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]