aboutsummaryrefslogtreecommitdiffstats
path: root/intl/relocatable.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:40:49 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:40:49 +0300
commit85c0d5edb781c9f31b79e48452b1ca68643f41de (patch)
tree14efbc59b30cdd626a208d6391f3ed226387054e /intl/relocatable.c
parent6cc7d587a710606d3fe52222707739c7cc1b8651 (diff)
downloadegawk-85c0d5edb781c9f31b79e48452b1ca68643f41de.tar.gz
egawk-85c0d5edb781c9f31b79e48452b1ca68643f41de.tar.bz2
egawk-85c0d5edb781c9f31b79e48452b1ca68643f41de.zip
Move to gawk-3.1.4.
Diffstat (limited to 'intl/relocatable.c')
-rw-r--r--intl/relocatable.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/intl/relocatable.c b/intl/relocatable.c
index 16f79a52..bf7c7085 100644
--- a/intl/relocatable.c
+++ b/intl/relocatable.c
@@ -42,7 +42,12 @@
#ifdef NO_XMALLOC
# define xmalloc malloc
#else
-# include "xmalloc.h"
+# include "xalloc.h"
+#endif
+
+#if defined _WIN32 || defined __WIN32__
+# define WIN32_LEAN_AND_MEAN
+# include <windows.h>
#endif
#if DEPENDS_ON_LIBCHARSET
@@ -152,6 +157,8 @@ set_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg)
#endif
}
+#if !defined IN_LIBRARY || (defined PIC && defined INSTALLDIR)
+
/* Convenience function:
Computes the current installation prefix, based on the original
installation prefix, the original installation directory of a particular
@@ -266,6 +273,8 @@ compute_curr_prefix (const char *orig_installprefix,
}
}
+#endif /* !IN_LIBRARY || PIC */
+
#if defined PIC && defined INSTALLDIR
/* Full pathname of shared library, or NULL. */
@@ -304,7 +313,8 @@ DllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved)
static void
find_shared_library_fullname ()
{
-#ifdef __linux__
+#if defined __linux__ && __GLIBC__ >= 2
+ /* Linux has /proc/self/maps. glibc 2 has the getline() function. */
FILE *fp;
/* Open the current process' maps file. It describes one VMA per line. */