diff options
Diffstat (limited to 'src/worker.c')
-rw-r--r-- | src/worker.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/worker.c b/src/worker.c index 02fcc8707..1f1548dd1 100644 --- a/src/worker.c +++ b/src/worker.c @@ -36,15 +36,15 @@ #include "modules.h" #include "message.h" +#ifndef WITHOUT_PERL #include <EXTERN.h> /* from the Perl distribution */ #include <perl.h> /* from the Perl distribution */ -#define TASK_POOL_SIZE 4095 +extern PerlInterpreter *perl_interpreter; +#endif static struct timeval io_tv; -extern PerlInterpreter *perl_interpreter; - static void write_socket (void *arg); static |