From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4697 invoked by alias); 24 Jul 2002 21:34:22 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 4683 invoked from network); 24 Jul 2002 21:34:20 -0000 Received: from unknown (HELO potter.sfbay.redhat.com) (205.180.83.107) by sources.redhat.com with SMTP; 24 Jul 2002 21:34:20 -0000 Received: from romulus.sfbay.redhat.com (remus.sfbay.redhat.com [172.16.27.252]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g6OLYaQ29062 for ; Wed, 24 Jul 2002 14:34:37 -0700 Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g6OLYIo05933 for gdb-patches@sources.redhat.com; Wed, 24 Jul 2002 14:34:18 -0700 Date: Wed, 24 Jul 2002 14:41:00 -0000 From: Kevin Buettner Message-Id: <1020724213418.ZM5932@localhost.localdomain> To: gdb-patches@sources.redhat.com Subject: [PATCH] Check for unistd.h in gdbserver/configure.in MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-07/txt/msg00489.txt.bz2 I was seeing some warnings while building gdbreplay.o which were due to the fact that unistd.h was not being included. I've just committed the (hopefully obvious) change below. * configure.in (unistd.h): Add to AC_CHECK_HEADERS list. * configure: Regenerate. * config.in: Regenerate. Index: configure.in =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/configure.in,v retrieving revision 1.10 diff -u -p -r1.10 configure.in --- configure.in 11 Jun 2002 17:32:39 -0000 1.10 +++ configure.in 24 Jul 2002 21:26:30 -0000 @@ -31,7 +31,7 @@ AC_PROG_INSTALL AC_HEADER_STDC AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl - proc_service.h sys/procfs.h thread_db.h linux/elf.h) + proc_service.h sys/procfs.h thread_db.h linux/elf.h unistd.h) . ${srcdir}/configure.srv