Supply dummy getrlimit if absent.

diff --git a/library/port.c b/library/port.c
index 667de08..064c183 100644
--- a/library/port.c
+++ b/library/port.c
@@ -372,6 +372,16 @@
 
 
 /***********************************************************************
+ *		getrlimit
+ */
+#ifndef HAVE_GETRLIMIT
+int getrlimit (int resource, struct rlimit *rlim)
+{
+    return -1; /* FAIL */
+}
+#endif /* HAVE_GETRLIMIT */
+
+/***********************************************************************
  *		wine_anon_mmap
  *
  * Portable wrapper for anonymous mmaps