Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 29910 invoked from network); 3 Oct 2006 15:26:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Oct 2006 15:26:25 -0000 Received: (qmail 21935 invoked by uid 500); 3 Oct 2006 15:26:25 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 21873 invoked by uid 500); 3 Oct 2006 15:26:25 -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 21862 invoked by uid 99); 3 Oct 2006 15:26:25 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Oct 2006 08:26:25 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [212.82.213.172] ([212.82.213.172:33761] helo=exkiv.kyiv.vdiweb.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id CE/72-08153-D1182254 for ; Tue, 03 Oct 2006 08:26:22 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: [PATCH] Scripts, generating solution and projects for MSVC/ICC [2] Date: Tue, 3 Oct 2006 18:26:29 +0300 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH] Scripts, generating solution and projects for MSVC/ICC [2] Thread-Index: AcbmM5KRnzZk4ZqISb+oRVKdjCvaLAAAKy3g From: "Farid Zaripov" To: X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > -----Original Message----- > From: Martin Sebor [mailto:sebor@roguewave.com]=20 > Sent: Monday, October 02, 2006 6:00 PM > To: stdcxx-dev@incubator.apache.org > Subject: Re: [PATCH] Scripts, generating solution and=20 > projects for MSVC/ICC [2] >=20 > > Should we replace #ifdef _RWBUILD_std to #ifdef _RWSTD_LIB_SRC in=20 > > _defs.h? >=20 > Yes. It should also key in on _RWSHARED. _RWSHARED is present in outer #ifdef: --------------------- #if (defined (_WIN32) || defined (_WIN64)) && \ (defined (RWDLL) || defined (_RWSHARED)) Commited here: = http://svn.apache.org/viewvc?view=3Drev&revision=3D452509 > > CXX, LD, AR variables are used at configure step only. > And not when bulding the lib? Why not? Because we use MS VisualStudio development envorinment (devenv.exe) in build process. Devenv itself selects what tool should be invoked to compile the partucular source file (i.e. cl.exe for .c, .cpp files; rc for .rc files). We cannot change this behavior. Farid.