From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30094 invoked by alias); 14 Sep 2006 13:02:15 -0000 Received: (qmail 30075 invoked by uid 22791); 14 Sep 2006 13:02:14 -0000 X-Spam-Check-By: sourceware.org Received: from sunsite.ms.mff.cuni.cz (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 14 Sep 2006 13:02:08 +0000 Received: from sunsite.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.1/8.13.1) with ESMTP id k8ED1vfU019880; Thu, 14 Sep 2006 15:01:57 +0200 Received: (from jj@localhost) by sunsite.mff.cuni.cz (8.13.1/8.13.1/Submit) id k8ED1vEu019879; Thu, 14 Sep 2006 15:01:57 +0200 Date: Thu, 14 Sep 2006 13:02:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix *at symbols in libc_nonshared.a Message-ID: <20060914130156.GG4556@sunsite.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2006-09/txt/msg00022.txt.bz2 Hi! fstatat/fstatat64/mknodat weren't marked hidden in libc_nonshared.a, so perhaps some -O0 compiled shared libraries could reexport it. 2006-09-14 Jakub Jelinek * io/Makefile (CFLAGS-fstatat.c): Set. (CFLAGS-fstatat64.c): Likewise. (CFLAGS-mknodat.c): Likewise. --- libc/io/Makefile.jj 2006-01-23 08:40:46.000000000 +0100 +++ libc/io/Makefile 2006-09-14 14:56:19.000000000 +0200 @@ -98,6 +98,9 @@ CFLAGS-mknod.c = -DHAVE_DOT_HIDDEN CFLAGS-stat64.c = -DHAVE_DOT_HIDDEN CFLAGS-fstat64.c = -DHAVE_DOT_HIDDEN CFLAGS-lstat64.c = -DHAVE_DOT_HIDDEN +CFLAGS-fstatat.c = -DHAVE_DOT_HIDDEN +CFLAGS-fstatat64.c = -DHAVE_DOT_HIDDEN +CFLAGS-mknodat.c = -DHAVE_DOT_HIDDEN endif test-stat2-ARGS = Makefile . $(objpfx)test-stat2 Jakub