Fix a regression in myfork.c causing build failures when libtool does not

define LT_OBJDIR.
This commit is contained in:
Sam Hocevar
2010-01-21 09:31:47 +00:00
committed by sam
parent 99d37ae471
commit 05ea84ecf4
2 changed files with 5 additions and 5 deletions
+5
View File
@@ -48,6 +48,11 @@
#include "md5.h"
#include "timer.h"
/* Handle old libtool versions */
#if !defined LT_OBJDIR
# define LT_OBJDIR ".libs/"
#endif
#if defined RLIMIT_AS
# define ZZUF_RLIMIT_MEM RLIMIT_AS
#elif defined RLIMIT_VMEM
-5
View File
@@ -75,11 +75,6 @@
# define SIGKILL 9
#endif
/* Handle old libtool versions */
#if !defined LT_OBJDIR
# define LT_OBJDIR ".libs/"
#endif
#if defined RLIMIT_AS
# define ZZUF_RLIMIT_MEM RLIMIT_AS
#elif defined RLIMIT_VMEM