summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--locale/loadlocale.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/locale/loadlocale.c b/locale/loadlocale.c
index 24959a59e8..5c367ae4be 100644
--- a/locale/loadlocale.c
+++ b/locale/loadlocale.c
@@ -83,6 +83,10 @@ _nl_load_locale (int category, char **name)
{
/* Map in the file's data. */
int save = errno;
+#ifndef MAP_COPY
+ /* Linux seems to lack read-only copy-on-write. */
+#define MAP_COPY MAP_PRIVATE
+#endif
filedata = (void *) __mmap ((caddr_t) 0, st.st_size,
PROT_READ, MAP_FILE|MAP_COPY, fd, 0);
if (filedata == (void *) -1)