From 39c80698ca5e6e74b4905215d6bf0537399aec19 Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Sun, 30 Oct 2005 09:10:10 +1100 Subject: [JOBS] Fixed support for disabling job control Since nobody has compiled with JOBS turned off for quite a while, it has bit-rotted. This patch makes it build again. --- src/jobs.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/jobs.h') diff --git a/src/jobs.h b/src/jobs.h index 7978fe8..26e421d 100644 --- a/src/jobs.h +++ b/src/jobs.h @@ -87,6 +87,8 @@ extern pid_t backgndpid; /* pid of last background process */ extern int job_warning; /* user was warned about stopped jobs */ #if JOBS extern int jobctl; /* true if doing job control */ +#else +#define jobctl 0 #endif void setjobctl(int); -- cgit 1.4.1