From patchwork Wed Jun 12 15:57:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 250816 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 18EC52C0099 for ; Thu, 13 Jun 2013 01:58:23 +1000 (EST) Received: from localhost ([::1]:59379 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmnRE-0005vb-KH for incoming@patchwork.ozlabs.org; Wed, 12 Jun 2013 11:58:20 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53807) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmnQh-0005uv-UA for qemu-devel@nongnu.org; Wed, 12 Jun 2013 11:57:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmnQd-0004nA-J2 for qemu-devel@nongnu.org; Wed, 12 Jun 2013 11:57:47 -0400 Received: from 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1d0::1]:57876 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmnQd-0004mg-9j for qemu-devel@nongnu.org; Wed, 12 Jun 2013 11:57:43 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1UmnQL-0002Lv-W3; Wed, 12 Jun 2013 16:57:26 +0100 From: Peter Maydell To: Aurelien Jarno , Blue Swirl Date: Wed, 12 Jun 2013 16:57:15 +0100 Message-Id: <1371052645-9006-4-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1371052645-9006-1-git-send-email-peter.maydell@linaro.org> References: <1371052645-9006-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:8b0:1d0::1 Cc: Anthony Liguori , Riku Voipio , Claudio Fontana , qemu-devel@nongnu.org Subject: [Qemu-devel] [PULL 03/13] configure: Drop CONFIG_ATFILE test X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Nobody uses the CONFIG_ATFILE test now, so just drop it. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Tested-by: Claudio Fontana Message-id: 1370126121-22975-3-git-send-email-peter.maydell@linaro.org --- configure | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/configure b/configure index 1654413..bb413be 100755 --- a/configure +++ b/configure @@ -2557,29 +2557,6 @@ EOF fi fi -# -# Check for xxxat() functions when we are building linux-user -# emulator. This is done because older glibc versions don't -# have syscall stubs for these implemented. -# -atfile=no -cat > $TMPC << EOF -#define _ATFILE_SOURCE -#include -#include -#include - -int -main(void) -{ - /* try to unlink nonexisting file */ - return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); -} -EOF -if compile_prog "" "" ; then - atfile=yes -fi - # Check for inotify functions when we are building linux-user # emulator. This is done because older glibc versions don't # have syscall stubs for these implemented. In that case we @@ -3722,9 +3699,6 @@ fi if test "$curses" = "yes" ; then echo "CONFIG_CURSES=y" >> $config_host_mak fi -if test "$atfile" = "yes" ; then - echo "CONFIG_ATFILE=y" >> $config_host_mak -fi if test "$utimens" = "yes" ; then echo "CONFIG_UTIMENSAT=y" >> $config_host_mak fi