From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3954 invoked by alias); 9 Oct 2002 13:15:51 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 3935 invoked from network); 9 Oct 2002 13:15:50 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 9 Oct 2002 13:15:50 -0000 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.11.6/8.11.6) id g99DFbC12983; Wed, 9 Oct 2002 15:15:37 +0200 Date: Wed, 09 Oct 2002 07:05:00 -0000 From: Jakub Jelinek To: Martin Schwidefsky Cc: libc-hacker@sources.redhat.com Subject: [PATCH] */lib64 for s390x Message-ID: <20021009151537.O3451@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek References: <200210091505.12166.schwidefsky@de.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200210091505.12166.schwidefsky@de.ibm.com>; from schwidefsky@de.ibm.com on Wed, Oct 09, 2002 at 03:05:11PM +0200 X-SW-Source: 2002-10/txt/msg00042.txt.bz2 On Wed, Oct 09, 2002 at 03:05:11PM +0200, Martin Schwidefsky wrote: > All I can say is: he is right. I wanted to look into versioned symbols for > the glibc functions that are affected by the utmp.h/utmpx.h change but I > am too busy with other stuff right now (and I know that extreme caution > is required for anything to do with versioning). Don't you need following too? 2002-10-09 Jakub Jelinek * sysdeps/unix/sysv/linux/configure.in: Use */lib64 for s390x too. * sysdeps/unix/sysv/linux/configure: Rebuilt. --- libc/sysdeps/unix/sysv/linux/configure.in 28 Sep 2002 20:39:35 -0000 1.1.1.17 +++ libc/sysdeps/unix/sysv/linux/configure.in 9 Oct 2002 11:14:45 -0000 1.14 @@ -185,7 +185,8 @@ fi if test "$prefix" = "/usr" -o "$prefix" = "/usr/"; then # 64bit libraries on sparc go to /lib64 and not /lib if test "$machine" = "sparc/sparc64" -o "$machine" = "x86_64" \ - -o "$machine" = "powerpc/powerpc64"; then + -o "$machine" = "powerpc/powerpc64" \ + -o "$machine" = "s390/s390-64"; then libc_cv_slibdir="/lib64" if test "$libdir" = '${exec_prefix}/lib'; then libdir='${exec_prefix}/lib64'; --- libc/sysdeps/unix/sysv/linux/configure 28 Sep 2002 20:39:35 -0000 1.1.1.17 +++ libc/sysdeps/unix/sysv/linux/configure 9 Oct 2002 11:14:45 -0000 1.14 @@ -185,7 +185,8 @@ fi if test "$prefix" = "/usr" -o "$prefix" = "/usr/"; then # 64bit libraries on sparc go to /lib64 and not /lib if test "$machine" = "sparc/sparc64" -o "$machine" = "x86_64" \ - -o "$machine" = "powerpc/powerpc64"; then + -o "$machine" = "powerpc/powerpc64" \ + -o "$machine" = "s390/s390-64"; then libc_cv_slibdir="/lib64" if test "$libdir" = '${exec_prefix}/lib'; then libdir='${exec_prefix}/lib64'; Jakub