New to LINUX

I am a VC++ Developer and this is the first time I am doing C++ under LINIX. I have an existing source code which is interacting with Apache Server.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "ap_config.h"
#include "ap_mmn.h"

#include "ap_release.h"

#include "apr.h"
#include "apr_general.h"
#include "apr_tables.h"
#include "apr_pools.h"
#include "apr_time.h"
#include "apr_network_io.h"
#include "apr_buckets.h"
#include "apr_poll.h"

#include "os.h"

#include "ap_regex.h" 


I googled and found out that these header files belong to Apache Server. Now my first question is

1) Is it possible to compile and run this kind of code in windows Win32 console?
2) If not I am running this in LINIX based C++ environment where G++ compiler is used. Since apache is already installed, is there any additional thing that needs to be configured so that this code can recognize those libraries?

Thanks in Advance
You will want to Google for "Apache Portable Runtime" which is what those "apr_" prefixes represent.
Topic archived. No new replies allowed.