parallel: Use --total-jobs + --bar if input is generated slowly.
[parallel.git] / configure.ac
blob9ecd9ad19f10bff3bfb25508a33e301f9cb6062d
1 AC_INIT([parallel],[20221022],[bug-parallel@gnu.org])
2 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
3 AC_CONFIG_HEADERS([config.h])
4 AC_CONFIG_FILES([
5   Makefile
6   src/Makefile
7 ])
9 AC_ARG_ENABLE(documentation,
10   AS_HELP_STRING([--disable-documentation],[Omit building and installing the documentation. (default=no)]),,
11                  [enable_documentation=yes])
12 AM_CONDITIONAL([DOCUMENTATION], [test x$enable_documentation = xyes])
13 AC_PROG_LN_S
14 AC_OUTPUT