parent
36cf52fa75
commit
4296692bf2
@ -0,0 +1,31 @@
|
||||
From fdb81f1a2012e558eaeb7fcf762736f1afcdeee9 Mon Sep 17 00:00:00 2001
|
||||
From: David Tardon <dtardon@redhat.com>
|
||||
Date: Wed, 3 Sep 2014 09:36:22 +0200
|
||||
Subject: [PATCH] fix KDE4 detection on aarch64
|
||||
|
||||
Change-Id: Iafe65564e8c2534cb03497d82d7dd3498abdf7c8
|
||||
---
|
||||
configure.ac | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index c0b5658..f65ab66 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -11045,9 +11045,12 @@ AC_SUBST(ENABLE_SCRIPTING_JAVASCRIPT)
|
||||
AC_SUBST(SYSTEM_RHINO)
|
||||
AC_SUBST(RHINO_JAR)
|
||||
|
||||
+# This is only used in KDE3/KDE4/TDE checks to determine if /usr/lib64
|
||||
+# paths should be added to library search path. So lets put all 64-bit
|
||||
+# platforms there.
|
||||
supports_multilib=
|
||||
case "$host_cpu" in
|
||||
-x86_64 | powerpc64 | s390x)
|
||||
+x86_64 | powerpc64 | powerpc64le | s390x | aarch64)
|
||||
if test "$SAL_TYPES_SIZEOFLONG" = "8"; then
|
||||
supports_multilib="yes"
|
||||
fi
|
||||
--
|
||||
1.9.3
|
||||
|
Loading…
Reference in new issue