Click here to Skip to main content
15,908,843 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRegular expression with VC6? Pin
bosfan16-Oct-06 3:39
bosfan16-Oct-06 3:39 
AnswerRe: Regular expression with VC6? Pin
Garth J Lancaster16-Oct-06 3:57
professionalGarth J Lancaster16-Oct-06 3:57 
GeneralRe: Regular expression with VC6? Pin
bosfan16-Oct-06 21:40
bosfan16-Oct-06 21:40 
GeneralRe: Regular expression with VC6? Pin
Garth J Lancaster16-Oct-06 21:47
professionalGarth J Lancaster16-Oct-06 21:47 
GeneralRe: Regular expression with VC6? Pin
bosfan16-Oct-06 21:56
bosfan16-Oct-06 21:56 
GeneralRe: Regular expression with VC6? Pin
Garth J Lancaster16-Oct-06 21:58
professionalGarth J Lancaster16-Oct-06 21:58 
GeneralRe: Regular expression with VC6? Pin
bosfan16-Oct-06 22:29
bosfan16-Oct-06 22:29 
GeneralRe: Regular expression with VC6? Pin
Garth J Lancaster16-Oct-06 21:56
professionalGarth J Lancaster16-Oct-06 21:56 
if the reply the the first question is 'no', you need to follow these instructions (from introduction.html) ...

Open up a command prompt, which has the necessary MSVC environment variables defined (for example by using the batch file Vcvars32.bat installed by the Visual Studio installation), and change to the <boost>\libs\regex\build directory.

Select the correct makefile - vc6.mak for "vanilla" Visual C++ 6 or vc6-stlport.mak if you are using STLPort.

Invoke the makefile like this:

nmake -fvc6.mak

You will now have a collection of lib and dll files in a "vc6" subdirectory, to install these into your development system use:

nmake -fvc6.mak install

The lib files will be copied to your <vc6>\lib directory and the dll files to <vc6>\bin, where <vc6> is the root of your Visual C++ 6 installation.

You can delete all the temporary files created during the build (excluding lib and dll files) using:

nmake -fvc6.mak clean

Finally when you use regex++ it is only necessary for you to add the <boost> root directory to your list of include directories for that project. It is not necessary for you to manually add a .lib file to the project; the headers will automatically select the correct .lib file for your build mode and tell the linker to include it.

Note that if you want to statically link to the regex library when using the dynamic C++ runtime, define BOOST_REGEX_STATIC_LINK when building your project (this only has an effect for release builds). If you want to add the source directly to your project then define BOOST_REGEX_NO_LIB to disable automatic library selection.
GeneralRe: Regular expression with VC6? [modified] Pin
bosfan16-Oct-06 23:42
bosfan16-Oct-06 23:42 
AnswerRe: Regular expression with VC6? Pin
Stephen Hewitt16-Oct-06 13:49
Stephen Hewitt16-Oct-06 13:49 
GeneralRe: Regular expression with VC6? Pin
bosfan17-Oct-06 0:40
bosfan17-Oct-06 0:40 
GeneralRe: Regular expression with VC6? Pin
Stephen Hewitt17-Oct-06 13:24
Stephen Hewitt17-Oct-06 13:24 
GeneralRe: Regular expression with VC6? Pin
bosfan17-Oct-06 21:57
bosfan17-Oct-06 21:57 
GeneralRe: Regular expression with VC6? Pin
bosfan17-Oct-06 23:38
bosfan17-Oct-06 23:38 
QuestionWinHelp help Pin
emgarcia16-Oct-06 3:19
emgarcia16-Oct-06 3:19 
QuestionHow to get the Public and Private IP address of a Remote System? Pin
gloriousgopi16-Oct-06 3:18
gloriousgopi16-Oct-06 3:18 
QuestionRe: How to get the Public and Private IP address of a Remote System? Pin
David Crow16-Oct-06 4:06
David Crow16-Oct-06 4:06 
AnswerRe: How to get the Public and Private IP address of a Remote System? Pin
gloriousgopi16-Oct-06 4:28
gloriousgopi16-Oct-06 4:28 
QuestionRe: How to get the Public and Private IP address of a Remote System? Pin
David Crow16-Oct-06 5:00
David Crow16-Oct-06 5:00 
QuestionRe: How to get the Public and Private IP address of a Remote System? Pin
gloriousgopi16-Oct-06 18:09
gloriousgopi16-Oct-06 18:09 
QuestionRe: How to get the Public and Private IP address of a Remote System? Pin
David Crow17-Oct-06 2:42
David Crow17-Oct-06 2:42 
AnswerRe: How to get the Public and Private IP address of a Remote System? Pin
gloriousgopi17-Oct-06 19:08
gloriousgopi17-Oct-06 19:08 
GeneralRe: How to get the Public and Private IP address of a Remote System? Pin
Mark Salsbery16-Oct-06 6:51
Mark Salsbery16-Oct-06 6:51 
GeneralRe: How to get the Public and Private IP address of a Remote System? Pin
gloriousgopi16-Oct-06 20:26
gloriousgopi16-Oct-06 20:26 
GeneralRe: How to get the Public and Private IP address of a Remote System? Pin
Mark Salsbery17-Oct-06 6:06
Mark Salsbery17-Oct-06 6:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.