diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/app_thread.cpp | 2 | ||||
-rw-r--r-- | src/dispatcher.cpp | 2 | ||||
-rw-r--r-- | src/i_inout.hpp | 2 | ||||
-rw-r--r-- | src/io_thread.cpp | 2 | ||||
-rw-r--r-- | src/msg_content.hpp | 2 | ||||
-rw-r--r-- | src/pipe.cpp | 2 | ||||
-rw-r--r-- | src/pipe.hpp | 2 | ||||
-rw-r--r-- | src/pub.cpp | 2 | ||||
-rw-r--r-- | src/socket_base.cpp | 2 | ||||
-rw-r--r-- | src/sub.cpp | 2 | ||||
-rw-r--r-- | src/zmq.cpp | 2 | ||||
-rw-r--r-- | src/zmq_decoder.hpp | 2 | ||||
-rw-r--r-- | src/zmq_encoder.hpp | 2 |
14 files changed, 15 insertions, 15 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 398c861..2701237 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,14 +4,14 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libzmq.pc if BUILD_CPP -include_HEADERS = ../cpp/zmq.hpp ../c/zmq.h +include_HEADERS = ../bindings/cpp/zmq.hpp ../bindings/c/zmq.h endif if BUILD_C if BUILD_CPP else -include_HEADERS = ../c/zmq.h +include_HEADERS = ../bindings/c/zmq.h endif endif diff --git a/src/app_thread.cpp b/src/app_thread.cpp index feaa4d6..f523f40 100644 --- a/src/app_thread.cpp +++ b/src/app_thread.cpp @@ -19,7 +19,7 @@ #include <algorithm> -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "platform.hpp" diff --git a/src/dispatcher.cpp b/src/dispatcher.cpp index 6ac9fa2..4c4ec80 100644 --- a/src/dispatcher.cpp +++ b/src/dispatcher.cpp @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "dispatcher.hpp" #include "app_thread.hpp" diff --git a/src/i_inout.hpp b/src/i_inout.hpp index 4664b13..6be6169 100644 --- a/src/i_inout.hpp +++ b/src/i_inout.hpp @@ -20,7 +20,7 @@ #ifndef __ZMQ_I_INOUT_HPP_INCLUDED__ #define __ZMQ_I_INOUT_HPP_INCLUDED__ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" namespace zmq { diff --git a/src/io_thread.cpp b/src/io_thread.cpp index d5de497..afac11c 100644 --- a/src/io_thread.cpp +++ b/src/io_thread.cpp @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "io_thread.hpp" #include "command.hpp" diff --git a/src/msg_content.hpp b/src/msg_content.hpp index 6c91966..22dd915 100644 --- a/src/msg_content.hpp +++ b/src/msg_content.hpp @@ -22,7 +22,7 @@ #include <stddef.h> -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "atomic_counter.hpp" diff --git a/src/pipe.cpp b/src/pipe.cpp index 6e590df..f4cf0c4 100644 --- a/src/pipe.cpp +++ b/src/pipe.cpp @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "pipe.hpp" diff --git a/src/pipe.hpp b/src/pipe.hpp index 81316e4..ede73b8 100644 --- a/src/pipe.hpp +++ b/src/pipe.hpp @@ -20,7 +20,7 @@ #ifndef __ZMQ_PIPE_HPP_INCLUDED__ #define __ZMQ_PIPE_HPP_INCLUDED__ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "stdint.hpp" #include "i_endpoint.hpp" diff --git a/src/pub.cpp b/src/pub.cpp index 5c6e329..ca8afae 100644 --- a/src/pub.cpp +++ b/src/pub.cpp @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "pub.hpp" #include "err.hpp" diff --git a/src/socket_base.cpp b/src/socket_base.cpp index 570be9e..9806465 100644 --- a/src/socket_base.cpp +++ b/src/socket_base.cpp @@ -20,7 +20,7 @@ #include <string> #include <algorithm> -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "socket_base.hpp" #include "app_thread.hpp" diff --git a/src/sub.cpp b/src/sub.cpp index 101c62f..515a843 100644 --- a/src/sub.cpp +++ b/src/sub.cpp @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "sub.hpp" #include "err.hpp" diff --git a/src/zmq.cpp b/src/zmq.cpp index c966448..c567b09 100644 --- a/src/zmq.cpp +++ b/src/zmq.cpp @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include <errno.h> #include <stdlib.h> diff --git a/src/zmq_decoder.hpp b/src/zmq_decoder.hpp index 16b5312..59c8671 100644 --- a/src/zmq_decoder.hpp +++ b/src/zmq_decoder.hpp @@ -20,7 +20,7 @@ #ifndef __ZMQ_ZMQ_DECODER_HPP_INCLUDED__ #define __ZMQ_ZMQ_DECODER_HPP_INCLUDED__ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "decoder.hpp" diff --git a/src/zmq_encoder.hpp b/src/zmq_encoder.hpp index 55826a5..102c434 100644 --- a/src/zmq_encoder.hpp +++ b/src/zmq_encoder.hpp @@ -20,7 +20,7 @@ #ifndef __ZMQ_ZMQ_ENCODER_HPP_INCLUDED__ #define __ZMQ_ZMQ_ENCODER_HPP_INCLUDED__ -#include "../c/zmq.h" +#include "../bindings/c/zmq.h" #include "encoder.hpp" |