1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00

unposted: thinko in configure.in for determination of jobtable size

This commit is contained in:
Clint Adams 2000-12-23 07:26:11 +00:00
parent 25faa7dbf9
commit ebb9daa319
2 changed files with 3 additions and 1 deletions

@ -1,5 +1,7 @@
2000-12-23 Clint Adams <schizo@debian.org>
* unposted: configure.in: thinko in jobtable size determination.
* Chip Salzenberg: 13310: Completion/Debian/_apt:
correct typo for apt-cache completion.

@ -1386,6 +1386,7 @@ AC_ARG_ENABLE(max-jobtable-size,
#endif
],
maxj=max)
fi
if test x$maxj = xmax; then
AC_DEFINE(MAXJOB, MAX_TASKS_PER_USER)
@ -1395,7 +1396,6 @@ AC_ARG_ENABLE(max-jobtable-size,
AC_DEFINE(MAXJOB, 256)
AC_MSG_RESULT(${msg}256)
fi
fi
elif test x$enableval = xno; then
AC_DEFINE(MAXJOB,512)