okbob / pspg

Unix pager (with very rich functionality) designed for work with tables. Designed for PostgreSQL, but MySQL is supported too. Works well with pgcli too. Can be used as CSV or TSV viewer too. It supports searching, selecting rows, columns, or block and export selected area to clipboard.
BSD 2-Clause "Simplified" License
2.43k stars 85 forks source link

Declare minimum required autoconf version #220

Closed jwilk closed 1 year ago

jwilk commented 1 year ago

This improves error message from autogen.sh when autoconf is too old.

Before:

$ ./autogen.sh
configure.ac:12: error: possibly undefined macro: AC_CHECK_INCLUDES_DEFAULT
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

After:

$ ./autogen.sh
configure.ac:1: error: Autoconf version 2.70 or higher is required
configure.ac:1: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
aclocal: error: echo failed with exit status: 63
okbob commented 1 year ago

merged, Thank you for PR