Update of /cvsroot/boost/boost/libs/asio/example/http/server3
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21573/server3

Added Files:
        Jamfile Jamfile.v2 
Log Message:
Add Jamfiles for new HTTP server examples.


--- NEW FILE: Jamfile ---
#
# Copyright (c) 2003-2007 Christopher M. Kohlhoff (chris at kohlhoff dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#

subproject libs/asio/example/http/server3 ;

project boost : $(BOOST_ROOT) ;

if $(UNIX)
{
  switch $(JAMUNAME)
  {
  case SunOS* :
    {
      SOCKET_LIBS = <find-library>socket <find-library>nsl ;
    }
  }
}

exe http_server
  : <lib>@boost/libs/thread/build/boost_thread
    <lib>@boost/libs/system/build/boost_system
    connection.cpp
    mime_types.cpp
    posix_main.cpp
    reply.cpp
    request_handler.cpp
    request_parser.cpp
    server.cpp
    win_main.cpp
  : <include>$(BOOST_ROOT)
    <include>../../../../..
    <define>BOOST_ALL_NO_LIB=1
    <threading>multi
    <mingw><*><find-library>ws2_32
    <mingw><*><find-library>mswsock
    $(SOCKET_LIBS)
  ;

--- NEW FILE: Jamfile.v2 ---
#
# Copyright (c) 2003-2007 Christopher M. Kohlhoff (chris at kohlhoff dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#

import os ;

if [ os.name ] = SOLARIS
{
  lib socket ;
  lib nsl ;
}
else if [ os.name ] = NT
{
  lib ws2_32 ;
  lib mswsock ;
}

exe server
  : connection.cpp
    mime_types.cpp
    posix_main.cpp
    reply.cpp
    request_handler.cpp
    request_parser.cpp
    server.cpp
    win_main.cpp
    /boost/system//boost_system
    /boost/thread//boost_thread
  : <define>BOOST_ALL_NO_LIB=1
    <threading>multi
    <os>SOLARIS:<library>socket
    <os>SOLARIS:<library>nsl
    <os>NT,<toolset>gcc:<library>ws2_32
    <os>NT,<toolset>gcc:<library>mswsock
  ;


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to