To make it like the Posix functions again, you would actually need to define _CRT_NONSTDC_NO_WARNINGS
In fact, there is something to be said for creating an environment variable called "CL" and defining it as:
"/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_WARNINGS /D_SCL_SECURE_NO_WARNINGS"
If that doesn't work, try
"/D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE /D_SCL_SECURE_NO_DEPRECATE"
This variable should silence all of Visual Studio's claims that perfectly standard functions shouldn't be used.
________________________________________
From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Server Levent Yilmaz
Sent: Wednesday, May 30, 2007 2:51 PM
To: boost-users@lists.boost.org
Subject: Re: [Boost-users] iostreams build error in Visual Studio 2005
Hi Os,
On 5/30/07, Os