From patchwork Wed Jun 8 08:25:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicola Pero X-Patchwork-Id: 99369 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 A1B74B7002 for ; Wed, 8 Jun 2011 18:25:57 +1000 (EST) Received: (qmail 3259 invoked by alias); 8 Jun 2011 08:25:53 -0000 Received: (qmail 3240 invoked by uid 22791); 8 Jun 2011 08:25:48 -0000 X-SWARE-Spam-Status: No, hits=-1.4 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, 08 Jun 2011 08:25:17 +0000 Received: from eggs.gnu.org ([140.186.70.92]:49171) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1QUE4i-0003qU-8D for gcc-patches@gnu.org; Wed, 08 Jun 2011 04:25:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QUE4f-0007jR-PX for gcc-patches@gnu.org; Wed, 08 Jun 2011 04:25:15 -0400 Received: from smtp191.iad.emailsrvr.com ([207.97.245.191]:33656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QUE4f-0007j7-50 for gcc-patches@gnu.org; Wed, 08 Jun 2011 04:25:13 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp29.relay.iad1a.emailsrvr.com (SMTP Server) with ESMTP id C90CB1485CB; Wed, 8 Jun 2011 04:25:11 -0400 (EDT) Received: by smtp29.relay.iad1a.emailsrvr.com (Authenticated sender: nicola.pero-AT-meta-innovation.com) with ESMTPSA id 3FD4F148475; Wed, 8 Jun 2011 04:25:11 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v1084) Subject: Re: libobjc: Remove Traditional Objective-C runtime API From: Nicola Pero In-Reply-To: Date: Wed, 8 Jun 2011 09:25:09 +0100 Message-Id: <9A3B0833-6937-49CD-A9CA-D301ABE3D699@meta-innovation.com> References: <1307475462.227817266@www2.webmail.us> <20110608070018.GF17079@tyan-ft48-01.lab.bos.redhat.com> To: Jakub Jelinek , gcc-patches@gnu.org X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 207.97.245.191 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 >>> This patch completes the removal of the public part of the >>> Traditional Objective-C runtime API from libobjc. >>> >>> From now on, the only supported API is the "Modern" API. :-) >> >> If you are removing exported functions from libobjc.so, you should >> bump VERSION= in libobjc/configure.ac. > > Yes, sure ... shall I do that now ? I'm not done with changes yet. ;-) But - you're right that we should bump it, so I bumped it :-) I suppose we could bump it again when we get into phase 3, when we're finished with the changes. Thanks Index: configure =================================================================== --- configure (revision 174797) +++ configure (working copy) @@ -2274,7 +2274,7 @@ # We need the following definitions because AC_PROG_LIBTOOL relies on them PACKAGE=libobjc # Version is pulled out to make it a bit easier to change using sed. -VERSION=3:0:0 +VERSION=4:0:0 # This works around the fact that libtool configuration may change LD Index: configure.ac =================================================================== --- configure.ac (revision 174797) +++ configure.ac (working copy) @@ -27,7 +27,7 @@ # We need the following definitions because AC_PROG_LIBTOOL relies on them PACKAGE=libobjc # Version is pulled out to make it a bit easier to change using sed. -VERSION=3:0:0 +VERSION=4:0:0 AC_SUBST(VERSION) # This works around the fact that libtool configuration may change LD Index: ChangeLog =================================================================== --- ChangeLog (revision 174797) +++ ChangeLog (working copy) @@ -1,5 +1,10 @@ 2011-06-08 Nicola Pero + * configure.ac (VERSION): Bumped to 4:0:0. + * configure (VERSION): Likewise. + +2011-06-08 Nicola Pero + * objc/README: Updated. * objc-private/selector.h: Updated comments.