mirror of
				https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
				synced 2025-10-30 18:17:50 +00:00 
			
		
		
		
	
			
				
					
						
					
					cbb32c0fb279f552dda6bba11a549c3982b57e1c
				
			
			
		
	This is the README file for the POCO C++ Libraries.
In this document you will find a brief description of the directory layout,
as well as a description necessary steps to build the POCO C++ Libraries.
The Foundation library contains a platform abstraction layer (including classes
for multithreading, file system access, logging, etc.), as well as
a large number of useful utility classes, such various stream buffer and stream
classes, URI handling, and many more.
The XML library contains an XML parser with SAX2 and DOM interfaces,
as well as an XMLWriter.
The Util library contains classes for working with configuration files and 
command line arguments, as well as various utility classes.
The Net library contains network classes (sockets, HTTP, etc.)
All libraries come with a test suite and a number of sample programs.
The directory layout is as follows:
build/                     the build system for Unix/OpenVMS and additional utility scripts
    config/                build configurations for various Unix platforms
    rules/                 common build rules for all platforms
    scripts/               build and utility scripts
    vms/                   OpenVMS build system scripts
bin/                       all executables (dynamic link libraries on Windows)
doc/                       additional documentation
lib/                       all libraries (import libraries on Windows)
CppUnit/                   project and make/build files for the CppUnit unit testing framework
    doc/                   additional documentation
    include/
        CppUnit/           header files for CppUnit
    src/                   source files for CppUnit
    WinTestRunner/         Windows GUI for CppUnit
Foundation/                project and make/build files for the Foundation library
    include/
        Poco/              header files for the Foundation library
    src/                   source files for the Foundation library
    testsuite/             project and make/build files for the Foundation testsuite
              src/         source files for the Foundation testsuite
              bin/         test suite executables
    samples/               sample applications for the Foundation library
XML/                       project and make/build files for the XML library
    include/
        Poco/
            XML/           header files for the XML library
    src/                   source files for the XML library
    testsuite/             project and make/build files for the XML testsuite
              src/         source files for the XML testsuite
              bin/         test suite executables
    samples/               sample applications for the XML library
DOCUMENTATION
=============
Online browsable reference documentation in HTML is available at
<http://pocoproject.org/poco/docs/>. 
BUILDING ON WINDOWS
===================
Microsoft Visual Studio 7.1 (2003), 8.0 (2005) or 9.0 (2008) is required to build the  
POCO C++ Libraries on Windows platforms. Solution and project files for all three versions 
are included.
You can either build from within Visual Studio (Build->Batch Build->Select All;Rebuild)
or from the command line. To build from the command line, start the
Visual Studio .NET 2003 (or 2005/2008) Command Prompt and cd to the directory where you have
extracted the POCO C++ Libraries sources. Then, simply start the buildwin.cmd script
and pass as argument the version of visual studio (71, 80 or 90). You can customize
what is being built by buildwin.cmd by passing appropriate command line arguments to
it. Call buildwin.cmd without arguments to see what is available.
In order to run the test suite and the samples, the top-most bin directory containing
the shared libraries must be in the PATH environment variable.
If you want to run the test suite or samples from within Visual Studio, we recommend that
you download and install the free Solution Build Environment for Visual Studio .NET 2003,
from <http://www.workspacewhiz.com/SolutionBuildEnvironmentReadme.html>.
You can then add the bin directory to the PATH environment variable in a .slnenv file,
using the following entry.
POCO_BASE=p:\poco
PATH=$(PATH);$(POCO_BASE)\bin
Of course you will have to change the path p:\poco so that it matches your environment.
IMPORTANT NOTE: Please make sure that the path to the directory containing the
POCO C++ Libraries source tree does not contain spaces. Otherwise, the Microsoft
message compiler will fail when building the Foundation library.
BUILDING ON UNIX/LINUX/MAC OS X
===============================
For building on Unix platforms, the POCO C++ Libraries come with their own
build system. The build system is based on GNU Make 3.80, with the help from a few
shell scripts. If you do not have GNU Make 3.80 (or later) installed on your machine, 
you will need to download it from <http://directory.fsf.org/devel/build/make.html>, 
build and install it prior to building the POCO C++ Libraries.
You can check the version of GNU Make installed on your system with
> gmake --version
or
> make --version
Once you have GNU Make up and running, the rest is quite simple.
To extract the sources and build all libraries, testsuites and samples, simply
> gunzip poco-X.Y.tar.gz
> tar -xf poco-X.Y.tar.gz
> cd poco-X.Y.tar.gz
> ./configure
> gmake -s
See the configure script source for a list of possible options.
For starters, we recommend --no-tests and --no-samples, to reduce build times.
On a multicore or multiprocessor machine, use parallel makes to speed up
the build (make -j4).
Once you have successfully built POCO, you can install it
to /usr/local (or another directory specified as parameter
to configure --prefix=<path>):
> sudo gmake -s install
To build on Mac OS X 10.3 with GCC 3, do the following:
(NOTE: This only affects 10.3; for 10.4/10.5 see above)
> ./configure --config=Darwin7
> make -s
BUILDING ON QNX NEUTRINO
========================
For QNX Neutrino, the Unix build system (see the instructions above) is used.
You can use the build system to cross-compile for a target platform on a Solaris or
Linux host. Unfortunately, the Cygwin-based Windows host environment has some major
quirks that prevent the build system from working there. You can also use the
build system on a self-hosted QNX system. The default build configuration for QNX
(found in build/config/QNX) is for a self-hosted x86 platform. To specify another
target, edit the CCVER setting in the build configuration file. For example, to
compile for a PowerPC target, specify CCVER=3.3.1,gcc_ntoppcbe.
Service Pack 1 for QNX Neutrino 6.3 must be installed, otherwise compiling the
Foundation library will fail due to a problem with the <list> header in the
default (Dinkumware) C++ standard library.
BUILDING ON OPENVMS
===================
OpenVMS is no longer supported in recent versions of POCO, due to both a
lack of interest and a lack of contributors. The following
instructions are here for historical reasons.
The POCO C++ Libraries come with their own build system for OpenVMS, implemented
by a bunch of DCL scripts. The scripts can be found in the build/vms directory.
To build the POCO C++ Libraries on OpenVMS, follow the following steps.
1) Download the .zip distribution of the POCO C++ Libraries
2) Unzip the archive
   $ unzip -aa poco-0_91_4.zip
3) Change the directory
   $ set def [.poco-0_01_4]
4) Create a lib directory
   $ create/dir [.lib]
5) Run the buildvms.com script
   $ @buildvms
This will build the debug versions of the libraries. To build the release
versions, use
   $ @buildvms -release
MORE INFORMATION
================
For more information, see the POCO C++ Libraries website
at <http://pocoproject.org>.
--
$Id: //poco/1.3/dist/README#5 $
			
		
					Languages
				
				
								
								
									C
								
								51.7%
							
						
							
								
								
									C++
								
								47.1%
							
						
							
								
								
									CMake
								
								0.5%
							
						
							
								
								
									JavaScript
								
								0.2%
							
						
							
								
								
									Makefile
								
								0.2%
							
						
							
								
								
									Other
								
								0.1%
							
						
					