Re: [BUGS] Detecting proper bison version before make

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUGS] Detecting proper bison version before make
Дата
Msg-id 15638.1055000665@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [BUGS] Detecting proper bison version before make  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-patches
Bruce Momjian <pgman@candle.pha.pa.us> writes:
>   AC_CHECK_PROGS(YACC, ['bison -y'])
> +
> + if test "$YACC"; then
> +   if bison --version | sed q | $AWK '{ if ($4 < 1.875) exit 0; else exit 1;}'; then
> +     AC_MSG_WARN([

Should this not be making at least some effort to use the particular
program found by the AC_CHECK_PROGS macro?  ie, why not $YACC --version ...

            regards, tom lane

В списке pgsql-patches по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [BUGS] Detecting proper bison version before make
Следующее
От: Joe Conway
Дата:
Сообщение: Re: [GENERAL] Bug in metaphone (contrib/fuzzystrmatch)