aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt4
-rw-r--r--ports/linux/portdefs.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index 11f492e..3b2b965 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,3 +1,7 @@
+2014-07-17:
+ * (seebs) Restrict symbol version restrictions to x86-64 and i386
+ rather than x86-64 and any old thing. Fixes build problems on ARM.
+
2014-07-11:
* (seebs) merge in symbol version restrictions (slightly tweaked)
for Linux.
diff --git a/ports/linux/portdefs.h b/ports/linux/portdefs.h
index 60a8cc1..f0a0e40 100644
--- a/ports/linux/portdefs.h
+++ b/ports/linux/portdefs.h
@@ -22,6 +22,6 @@
#ifdef __amd64__
GLIBC_COMPAT_SYMBOL(memcpy,2.2.5);
-#else /* tentatively assume this means x86 */
+#elif defined(__i386__)
GLIBC_COMPAT_SYMBOL(memcpy,2.0);
#endif