raise datasize rlimit to max

Index: app/main.c
--- app/main.c.orig
+++ app/main.c
@@ -17,6 +17,7 @@
 
 #include "config.h"
 
+#include <sys/resource.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -560,10 +561,16 @@ main (int    argc,
 #endif
   gint            retval;
   gint            i;
+  struct          rlimit limit;
 
 #ifdef ENABLE_WIN32_DEBUG_CONSOLE
   gimp_open_console_window ();
 #endif
+
+  if (getrlimit (RLIMIT_DATA, &limit) != -1) {
+    limit.rlim_cur = limit.rlim_max;
+    (void)setrlimit (RLIMIT_DATA, &limit);
+  }
 
 #if defined(ENABLE_RELOCATABLE_RESOURCES) && defined(__APPLE__)
   /* remove MacOS session identifier from the command line args */
