changeset 70:f38b11b45871

2007-07-04 Gary Benson <gbenson@redhat.com> * acinclude.m4 (SET_ARCH_DIRS): Fix library paths on ppc64 and s390x. * configure: Regenerated.
author Gary Benson <gbenson@redhat.com>
date Wed, 04 Jul 2007 05:41:47 -0400
parents cc63427bd7f1
children e2294b461980
files ChangeLog acinclude.m4 configure
diffstat 3 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jul 02 18:08:57 2007 -0400
+++ b/ChangeLog	Wed Jul 04 05:41:47 2007 -0400
@@ -1,3 +1,8 @@
+2007-07-04  Gary Benson  <gbenson@redhat.com>
+
+	* acinclude.m4 (SET_ARCH_DIRS): Fix library paths on ppc64 and s390x.
+	* configure: Regenerated.
+
 2007-07-02  Lillian Angel  <langel@redhat.com>
 
 	* Makefile.am: Changed to use -source and -target flags instead of
--- a/acinclude.m4	Mon Jul 02 18:08:57 2007 -0400
+++ b/acinclude.m4	Wed Jul 04 05:41:47 2007 -0400
@@ -9,6 +9,14 @@
       BUILD_ARCH_DIR=i586
       INSTALL_ARCH_DIR=i386
       ;;
+    powerpc*-*-*)
+      BUILD_ARCH_DIR=ppc
+      INSTALL_ARCH_DIR=ppc
+      ;;
+    s390*-*-*)
+      BUILD_ARCH_DIR=s390
+      INSTALL_ARCH_DIR=s390
+      ;;
     *)
       BUILD_ARCH_DIR=`uname -m`
       INSTALL_ARCH_DIR=$BUILD_ARCH_DIR
--- a/configure	Mon Jul 02 18:08:57 2007 -0400
+++ b/configure	Wed Jul 04 05:41:47 2007 -0400
@@ -3867,6 +3867,14 @@
       BUILD_ARCH_DIR=i586
       INSTALL_ARCH_DIR=i386
       ;;
+    powerpc*-*-*)
+      BUILD_ARCH_DIR=ppc
+      INSTALL_ARCH_DIR=ppc
+      ;;
+    s390*-*-*)
+      BUILD_ARCH_DIR=s390
+      INSTALL_ARCH_DIR=s390
+      ;;
     *)
       BUILD_ARCH_DIR=`uname -m`
       INSTALL_ARCH_DIR=$BUILD_ARCH_DIR