From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5480 invoked by alias); 5 Aug 2004 19:47:43 -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 5472 invoked from network); 5 Aug 2004 19:47:41 -0000 Received: from unknown (HELO ms-smtp-02.nyroc.rr.com) (24.24.2.56) by sourceware.org with SMTP; 5 Aug 2004 19:47:41 -0000 Received: from doctormoo (syr-24-59-107-180.twcny.rr.com [24.59.107.180]) by ms-smtp-02.nyroc.rr.com (8.12.10/8.12.10) with ESMTP id i75JldMv020579 for ; Thu, 5 Aug 2004 15:47:39 -0400 (EDT) Received: by doctormoo (Postfix, from userid 1000) id E2A8543D13; Thu, 5 Aug 2004 15:47:39 -0400 (EDT) Date: Thu, 05 Aug 2004 19:47:00 -0000 To: gdb-patches@sources.redhat.com Subject: [PATCH] Make spu use autoconf 2.59 Message-ID: <20040805194739.GA6173@twcny.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6+20040722i From: neroden@twcny.rr.com (Nathanael Nerode) X-Virus-Scanned: Symantec AntiVirus Scan Engine X-SW-Source: 2004-08/txt/msg00131.txt.bz2 This updates spu to use autoconf 2.59. It was easy. :-) It's only distributed with GDB, so I'm asking on that list. For copyright purposes, I'm treating it as being part of GDB. OK to commit? Index: ChangeLog =================================================================== RCS file: /cvs/src/src/utils/spu/ChangeLog,v retrieving revision 1.6 diff -u -r1.6 ChangeLog --- ChangeLog 2 Apr 2002 20:23:28 -0000 1.6 +++ ChangeLog 5 Aug 2004 19:42:12 -0000 @@ -1,3 +1,10 @@ +2004-08-05 Nathanael Nerode + + * configure.in: Convert to autoconf 2.59, rename to... + * configure.ac: ...this. + * Makefile.in: Update to match. + * configure: Regenerate. + 2002-04-02 Daniel Jacobowitz From Nathanael Nerode : Index: Makefile.in =================================================================== RCS file: /cvs/src/src/utils/spu/Makefile.in,v retrieving revision 1.2 diff -u -r1.2 Makefile.in --- Makefile.in 2 Apr 2002 20:23:28 -0000 1.2 +++ Makefile.in 5 Aug 2004 19:42:12 -0000 @@ -92,5 +92,5 @@ config.status: $(srcdir)/configure ./config.status --recheck -$(srcdir)/configure: $(srcdir)/configure.in +$(srcdir)/configure: $(srcdir)/configure.ac cd $(srcdir) && autoconf Index: configure.ac =================================================================== RCS file: configure.ac diff -N configure.ac --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ configure.ac 5 Aug 2004 19:42:14 -0000 @@ -0,0 +1,43 @@ +# Process this file with autoconf to produce a configure script. + +# Copyright 2002, 2004 Free Software Foundation, Inc. + +# This file is part of SPU. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +AC_INIT +AC_PREREQ([2.59]) +AC_CONFIG_SRCDIR([spu.c]) + +# Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL + +dnl # Checks for header files. +dnl # The program doesn't actually handle failure. +dnl AC_HEADER_STDC +dnl AC_CHECK_HEADERS([stdlib.h string.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST + +dnl # Checks for library functions. +dnl # The program doesn't actually handle failure. +dnl AC_FUNC_MALLOC +dnl AC_CHECK_FUNCS([memset strtol]) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT Index: configure.in =================================================================== RCS file: configure.in diff -N configure.in --- configure.in 2 Apr 2002 20:23:28 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,40 +0,0 @@ -# Process this file with autoconf to produce a configure script. - -# Copyright 2002 Free Software Foundation, Inc. - -# This file is part of SPU. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -AC_INIT([spu.c]) - -# Checks for programs. -AC_PROG_CC -AC_PROG_INSTALL - -dnl # Checks for header files. -dnl # The program doesn't actually handle failure. -dnl AC_HEADER_STDC -dnl AC_CHECK_HEADERS([stdlib.h string.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_C_CONST - -dnl # Checks for library functions. -dnl # The program doesn't actually handle failure. -dnl AC_FUNC_MALLOC -dnl AC_CHECK_FUNCS([memset strtol]) - -AC_OUTPUT([Makefile]) -- There are none so blind as those who will not see.