From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24087 invoked by alias); 12 Jul 2003 14:19:44 -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 23952 invoked from network); 12 Jul 2003 14:19:43 -0000 Received: from unknown (HELO localhost.localdomain) (195.113.19.66) by sources.redhat.com with SMTP; 12 Jul 2003 14:19:43 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by localhost.localdomain (8.12.8/8.12.8) with ESMTP id h6CEJeqO020160; Sat, 12 Jul 2003 16:19:40 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id h6CEJe4f020158; Sat, 12 Jul 2003 16:19:40 +0200 Date: Sat, 12 Jul 2003 14:19:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Misc fixes Message-ID: <20030712141939.GO20507@sunsite.ms.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.4i X-SW-Source: 2003-07/txt/msg00010.txt.bz2 Hi! 2003-07-12 Jakub Jelinek * sysdeps/unix/sysv/linux/futimes.c: Include kernel-features.h. * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Fix a typo. --- libc/sysdeps/unix/sysv/linux/futimes.c 12 Jul 2003 09:10:10 -0000 1.1.1.1 +++ libc/sysdeps/unix/sysv/linux/futimes.c 12 Jul 2003 09:48:04 -0000 1.2 @@ -23,6 +23,8 @@ #include #include +#include "kernel-features.h" + /* Change the access time of FILE to TVP[0] and the modification time of FILE to TVP[1], but do not follow symlinks. --- libc/sysdeps/unix/sysv/linux/kernel-features.h 12 Jul 2003 09:10:10 -0000 1.1.1.39 +++ libc/sysdeps/unix/sysv/linux/kernel-features.h 12 Jul 2003 09:48:04 -0000 1.24 @@ -347,7 +347,7 @@ #endif /* The utimes syscall has been available for some architectures forever. */ -#if defined __alpha__ || defined __ia64__ || defined __hppa_ \ +#if defined __alpha__ || defined __ia64__ || defined __hppa__ \ || defined __sparc__ # define __ASSUME_UTIMES 1 #endif Jakub