Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 22007 invoked from network); 10 Sep 2007 15:22:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Sep 2007 15:22:57 -0000 Received: (qmail 99323 invoked by uid 500); 10 Sep 2007 15:22:51 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 99311 invoked by uid 500); 10 Sep 2007 15:22:50 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 99300 invoked by uid 99); 10 Sep 2007 15:22:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2007 08:22:50 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2007 15:24:20 +0000 Received: from qxvcexch01.ad.quovadx.com ([192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id l8AFMQ7a016443 for ; Mon, 10 Sep 2007 15:22:26 GMT Received: from [10.70.3.113] ([10.70.3.113]) by qxvcexch01.ad.quovadx.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 10 Sep 2007 09:21:31 -0600 Message-ID: <46E56132.6010100@roguewave.com> Date: Mon, 10 Sep 2007 09:22:26 -0600 From: Martin Sebor Organization: Rogue Wave Software, Inc. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: want to replace rogue wave stl with apache stl References: <4cea447b0709100043rc278223j1c808f5d994367bd@mail.gmail.com> In-Reply-To: <4cea447b0709100043rc278223j1c808f5d994367bd@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 10 Sep 2007 15:21:31.0603 (UTC) FILETIME=[44261230:01C7F3BE] X-Virus-Checked: Checked by ClamAV on apache.org Alok Shrivastava wrote: > Hi, > Thanks for adding my name in the list. > > I have one question-I have some c++ code which uses rogue wave STL,I want to > replace the rogue wave stl with apache stl,can it be possible ?Please help > me in this regards. That depends on what you mean by "replace" and how old the Rogue Wave library is. If by replace you mean recompiling your program with the Apache C++ Standard Library, it should be trivial to do as long as your program doesn't rely on implementation-defined extensions that were removed from the Rogue Wave implementation (I can't think of any we've removed between 3.x and 4.x). If you're looking for a drop-in replacement (i.e., just replacing the library binary without recompiling and relinking your programs), that should be possible within the same major version of the library. Martin