Commit 1630ca1c authored by Marco De Marco's avatar Marco De Marco
Browse files

Makefile modified, small changes

parent e3b92ab6
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -4,24 +4,24 @@ INST_NAME=test
DEBUG_LEV=-v3
INSTALL_DIR=/usr/local/bin
#================================================================================
INC_DIR=/usr/local/omniORB-4.1.7/include \
	   /usr/local/zeromq-3.2.3/include/zmq \
	   /usr/local/tango-8.1.2/include/tango \
	   /usr/local/soci-3.2.1/include \
	   /usr/local/soci-3.2.1/include/soci \
INC_DIR=/usr/local/omniORB/include \
	   /usr/local/zeromq/include/zmq \
	   /usr/local/tango/include/tango \
	   /usr/local/soci/include \
	   /usr/local/soci/include/soci \
	   /usr/include/mysql \
	   /usr/local/protobuf-2.5.0/include \
	   /usr/local/protobuf/include \
	   ./src
LIB_DIR=/usr/local/omniORB-4.1.7/lib \
	   /usr/local/zeromq-3.2.3/lib \
	   /usr/local/tango-8.1.2/lib \
	   /usr/local/soci-3.2.1/lib64 \
	   /usr/local/protobuf-2.5.0/lib
LIB_DIR=/usr/local/omniORB/lib \
	   /usr/local/zeromq/lib \
	   /usr/local/tango/lib \
	   /usr/local/soci/lib64 \
	   /usr/local/protobuf/lib
#================================================================================
CC=g++
CXX_DEBUG_FLAGS=-g -DVERBOSE_DEBUG
CXX_RELEASE_FLAGS=-O3
CXX_DEFAULT_FLAGS=-c -Wall -Wextra -std=c++11 -std=gnu++11
CXX_DEFAULT_FLAGS=-c -Wall -Wextra -std=c++0x
LDFLAGS=-Wall -lomniORB4 -lomniDynamic4 -lCOS4 -lomnithread -ltango -llog4tango \
	-lsoci_core -lsoci_mysql -lboost_system -lboost_thread -lboost_filesystem \
	-lboost_date_time -lprotobuf -lssl
+2 −2
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ protected:
    boost::asio::deadline_timer m_listsUpdateTimer;

    //Header size on binary stream
    const unsigned HEADER_SIZE = 4;
    static const unsigned HEADER_SIZE = 4;

    //Buffer for binary data read from stream
    std::vector<boost::uint8_t> m_readBuff;
@@ -194,7 +194,7 @@ protected:
    std::string m_remoteEndpoint;

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

    //Buffer for file data read from stream
    std::vector<char> m_fileBuff;
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ protected:
    virtual ~DBManager();

    class Deleter;
    friend Deleter;
    friend class Deleter;
    class Deleter
    {
        public:
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ protected:
    virtual ~FileWrapper();

    class Deleter;
    friend Deleter;
    friend class Deleter;
    class Deleter
    {
        public:
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ protected:
    virtual ~PlainClient();

    class Deleter;
    friend Deleter;
    friend class Deleter;
    class Deleter
    {
        public:
Loading