summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.in2
-rw-r--r--devices/Makefile.am4
-rw-r--r--devices/forwarder/Makefile.am9
-rw-r--r--devices/zmq_forwarder/Makefile.am9
-rw-r--r--devices/zmq_forwarder/zmq_forwarder.cpp (renamed from devices/forwarder/forwarder.cpp)0
5 files changed, 12 insertions, 12 deletions
diff --git a/configure.in b/configure.in
index dd6d7ea..dd9f0b6 100644
--- a/configure.in
+++ b/configure.in
@@ -491,7 +491,7 @@ AC_CHECK_FUNCS(perror gettimeofday memset socket getifaddrs freeifaddrs)
AC_OUTPUT(Makefile src/Makefile python/Makefile python/setup.py ruby/Makefile \
java/Makefile perf/Makefile perf/c/Makefile perf/cpp/Makefile \
perf/python/Makefile perf/ruby/Makefile perf/java/Makefile src/libzmq.pc \
- devices/Makefile devices/forwarder/Makefile)
+ devices/Makefile devices/zmq_forwarder/Makefile)
AC_MSG_RESULT([])
AC_MSG_RESULT([ ******************************************************** ])
diff --git a/devices/Makefile.am b/devices/Makefile.am
index b5bbd37..4cbad14 100644
--- a/devices/Makefile.am
+++ b/devices/Makefile.am
@@ -1,6 +1,6 @@
if BUILD_FORWARDER
-FORWARDER_DIR = forwarder
+FORWARDER_DIR = zmq_forwarder
endif
SUBDIRS = $(FORWARDER_DIR)
-DIST_SUBDIRS = forwarder
+DIST_SUBDIRS = zmq_forwarder
diff --git a/devices/forwarder/Makefile.am b/devices/forwarder/Makefile.am
deleted file mode 100644
index 63230c4..0000000
--- a/devices/forwarder/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-INCLUDES = -I$(top_builddir)/c -I$(top_builddir)/cpp
-
-bin_PROGRAMS = forwarder
-
-forwarder_LDADD = $(top_builddir)/src/libzmq.la
-forwarder_SOURCES = forwarder.cpp
-forwarder_CXXFLAGS = -Wall -pedantic -Werror
-
-
diff --git a/devices/zmq_forwarder/Makefile.am b/devices/zmq_forwarder/Makefile.am
new file mode 100644
index 0000000..892b7fe
--- /dev/null
+++ b/devices/zmq_forwarder/Makefile.am
@@ -0,0 +1,9 @@
+INCLUDES = -I$(top_builddir)/c -I$(top_builddir)/cpp
+
+bin_PROGRAMS = zmq_forwarder
+
+zmq_forwarder_LDADD = $(top_builddir)/src/libzmq.la
+zmq_forwarder_SOURCES = zmq_forwarder.cpp
+zmq_forwarder_CXXFLAGS = -Wall -pedantic -Werror
+
+
diff --git a/devices/forwarder/forwarder.cpp b/devices/zmq_forwarder/zmq_forwarder.cpp
index 8acbc85..8acbc85 100644
--- a/devices/forwarder/forwarder.cpp
+++ b/devices/zmq_forwarder/zmq_forwarder.cpp