mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-12 07:07:39 +00:00
Extern the global declaration of stack_limit. Fixes Savannah bug #32753
This commit is contained in:
parent
a81ee5209b
commit
dc90160079
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-05-02 Paul Smith <psmith@gnu.org>
|
||||||
|
|
||||||
|
* make.h: Make global variable stack_limit extern.
|
||||||
|
Fixes Savannah bug #32753.
|
||||||
|
|
||||||
2011-05-01 Paul Smith <psmith@gnu.org>
|
2011-05-01 Paul Smith <psmith@gnu.org>
|
||||||
|
|
||||||
* read.c (parse_file_seq): Don't try to invoke glob() unless there
|
* read.c (parse_file_seq): Don't try to invoke glob() unless there
|
||||||
|
|
2
make.h
2
make.h
|
@ -353,7 +353,7 @@ extern int unixy_shell;
|
||||||
#endif
|
#endif
|
||||||
#ifdef SET_STACK_SIZE
|
#ifdef SET_STACK_SIZE
|
||||||
# include <sys/resource.h>
|
# include <sys/resource.h>
|
||||||
struct rlimit stack_limit;
|
extern struct rlimit stack_limit;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct floc
|
struct floc
|
||||||
|
|
Loading…
Reference in a new issue