Commit 4ef5b505 authored by Marco De Marco's avatar Marco De Marco
Browse files

Boost added to makefile, small fix

parent fccf3e41
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ INSTALL_DIR=/usr/local/bin
INC_DIR=/usr/local/omniORB/include \
	   /usr/local/zeromq/include/zmq \
	   /usr/local/tango/include/tango \
	   /usr/local/boost/include \
	   /usr/local/soci/include \
	   /usr/local/soci/include/soci \
	   /usr/include/mysql \
@@ -15,6 +16,7 @@ INC_DIR=/usr/local/omniORB/include \
LIB_DIR=/usr/local/omniORB/lib \
	   /usr/local/zeromq/lib \
	   /usr/local/tango/lib \
	   /usr/local/boost/lib \
	   /usr/local/soci/lib64 \
	   /usr/local/protobuf/lib
#================================================================================
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ protected:
    std::ifstream m_inputFileStream;

    //Read buffer size
    const boost::uint64_t BUFFER_SIZE = 1024;
    static const boost::uint64_t BUFFER_SIZE = 1024;
};

}   //End of namespace
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ protected:
    boost::asio::io_service::strand m_strand;

    //Header size written on socket
    const unsigned int HEADER_SIZE = 4;
    static const unsigned int HEADER_SIZE = 4;

    //Binary buffer for read data
    std::vector<boost::uint8_t> m_readBuff;