From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Peter Maydell Date: Wed, 12 Jun 2013 16:57:15 +0100 Message-Id: <1371052645-9006-4-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1371052645-9006-1-git-send-email-peter.maydell@linaro.org> References: <1371052645-9006-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 03/13] configure: Drop CONFIG_ATFILE test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aurelien Jarno , Blue Swirl Cc: Anthony Liguori , Riku Voipio , Claudio Fontana , qemu-devel@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 -- 1.7.9.5