From patchwork Wed Oct 13 01:09:52 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicola Pero X-Patchwork-Id: 67640 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 21BF9B70A5 for ; Wed, 13 Oct 2010 12:10:01 +1100 (EST) Received: (qmail 10471 invoked by alias); 13 Oct 2010 01:10:00 -0000 Received: (qmail 10461 invoked by uid 22791); 13 Oct 2010 01:09:59 -0000 X-SWARE-Spam-Status: No, hits=-1.2 required=5.0 tests=AWL, BAYES_00, TW_BJ, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (140.186.70.10) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 13 Oct 2010 01:09:55 +0000 Received: from eggs.gnu.org ([140.186.70.92]:49591) by fencepost.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1P5pqs-00070X-2o for gcc-patches@gnu.org; Tue, 12 Oct 2010 21:09:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5pqq-0006dy-Vf for gcc-patches@gnu.org; Tue, 12 Oct 2010 21:09:53 -0400 Received: from smtp131.iad.emailsrvr.com ([207.97.245.131]:34367) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5pqq-0006ds-TP for gcc-patches@gnu.org; Tue, 12 Oct 2010 21:09:52 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp43.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id 676E12D020A for ; Tue, 12 Oct 2010 21:09:52 -0400 (EDT) X-Orig-To: gcc-patches@gnu.org Received: from dynamic8.wm-web.iad.mlsrvr.com (dynamic8.wm-web.iad1a.rsapps.net [192.168.2.149]) by smtp43.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id 577492D0205 for ; Tue, 12 Oct 2010 21:09:52 -0400 (EDT) Received: from meta-innovation.com (localhost [127.0.0.1]) by dynamic8.wm-web.iad.mlsrvr.com (Postfix) with ESMTP id 465E7305006C for ; Tue, 12 Oct 2010 21:09:52 -0400 (EDT) Received: by www2.webmail.us (Authenticated sender: nicola.pero@meta-innovation.com, from: nicola.pero@meta-innovation.com) with HTTP; Wed, 13 Oct 2010 03:09:52 +0200 (CEST) Date: Wed, 13 Oct 2010 03:09:52 +0200 (CEST) Subject: libobjc - missing includes From: "Nicola Pero" To: "gcc-patches@gnu.org" MIME-Version: 1.0 X-Type: plain Message-ID: <1286932192.286818425@192.168.2.228> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Obvious fix for missing includes (the problem only shows up when you install the compiler, not with the testsuite). Committed to trunk. Thanks Index: Makefile.in =================================================================== --- Makefile.in (revision 165403) +++ Makefile.in (working copy) @@ -138,7 +138,9 @@ OBJC_DEPRECATED_H = \ hash.h \ objc-list.h \ objc_error.h \ + objc_get_uninstalled_dtable.h \ objc_malloc.h \ + objc_object_alloc.h \ objc_unexpected_exception.h \ objc_valloc.h \ sarray.h \ @@ -152,6 +154,7 @@ OBJC_DEPRECATED_H = \ struct_objc_protocol.h \ struct_objc_protocol_list.h \ struct_objc_selector.h \ + struct_objc_static_instances.h \ struct_objc_symtab.h \ typedstream.h Index: ChangeLog =================================================================== --- ChangeLog (revision 165404) +++ ChangeLog (working copy) @@ -1,5 +1,11 @@ 2010-10-13 Nicola Pero + * Makefile.in (OBJC_DEPRECATED_H): Added + objc_get_uninstalled_dtable, objc_object_alloc.h and + struct_objc_static_instances.h. + +2010-10-13 Nicola Pero + * encoding.c (method_copyReturnType): New. (method_copyArgumentType): New. (method_getReturnType): New.