diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/Makefile.am | 3 |
3 files changed, 6 insertions, 2 deletions
@@ -2,6 +2,9 @@ This file contains information about the changes done to the ODR-DabMux in this repository 2014-02-11: Matthias P. Braendli <matthias@mpb.li> + (v0.4.2) + * crc-dabmux: + Actually add zmq.hpp to Makefile.am (v0.4.1) * crc-dabmux: Include zmq.hpp locally and prefer it over the diff --git a/configure.ac b/configure.ac index 997f544..2c9bcb2 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ # along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.61) -AC_INIT([ODR-DabMux], [0.4.1], [matthias.braendli@mpb.li]) +AC_INIT([ODR-DabMux], [0.4.2], [matthias.braendli@mpb.li]) AC_CONFIG_AUX_DIR([build-aux]) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE([-Wall subdir-objects]) diff --git a/src/Makefile.am b/src/Makefile.am index 0097b2c..9eb2477 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -88,7 +88,8 @@ odr_dabmux_SOURCES =DabMux.cpp DabMux.h \ mpeg.h mpeg.c \ StatsServer.h StatsServer.cpp \ TcpServer.h TcpServer.cpp \ - TcpSocket.h TcpSocket.cpp + TcpSocket.h TcpSocket.cpp \ + zmq.hpp odr_bridgetest_CFLAGS =-DBRIDGE_TEST odr_bridgetest_SOURCES =bridge.c \ |