From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37489) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiuOd-0001RU-3D for qemu-devel@nongnu.org; Sat, 01 Jun 2013 18:35:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UiuOa-0002Ew-LV for qemu-devel@nongnu.org; Sat, 01 Jun 2013 18:35:35 -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]:57703 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiuOa-0002EL-EG for qemu-devel@nongnu.org; Sat, 01 Jun 2013 18:35:32 -0400 From: Peter Maydell Date: Sat, 1 Jun 2013 23:35:21 +0100 Message-Id: <1370126121-22975-3-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1370126121-22975-1-git-send-email-peter.maydell@linaro.org> References: <1370126121-22975-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 2/2] configure: Drop CONFIG_ATFILE test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio , Claudio Fontana , patches@linaro.org Nobody uses the CONFIG_ATFILE test now, so just drop it. Signed-off-by: Peter Maydell --- configure | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/configure b/configure index 918dc36..034e3c3 100755 --- a/configure +++ b/configure @@ -2595,29 +2595,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 @@ -3758,9 +3735,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