summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-02-12 19:50:01 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-02-12 19:50:01 +0100
commit1dee56e909ee9000a692e1d849963e782797d397 (patch)
tree5b85acb99bcefc61c8a40785c185cd3e4833a540
parent9ff0ecbe4d151d5b65a1e9bb97e85d454b836bbb (diff)
downloaddabmux-0.4.3.tar.gz
dabmux-0.4.3.tar.bz2
dabmux-0.4.3.zip
Prepare release v0.4.3v0.4.3
-rw-r--r--ChangeLog12
-rw-r--r--INSTALL18
-rw-r--r--README1
-rw-r--r--configure.ac2
4 files changed, 27 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 29bd41a..0c7be54 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,19 +1,25 @@
This file contains information about the changes done to
the ODR-DabMux in this repository
+2014-02-12: Matthias P. Braendli <matthias@mpb.li>
+ (v0.4.3):
+ * odr-dabmux:
+ Add support for hexadecimal IDs in configuration file.
+ Add ZMQ input for toolame-dab.
+
2014-02-11: Matthias P. Braendli <matthias@mpb.li>
(v0.4.2)
- * crc-dabmux:
+ * odr-dabmux:
Actually add zmq.hpp to Makefile.am
(v0.4.1)
- * crc-dabmux:
+ * odr-dabmux:
Include zmq.hpp locally and prefer it over the
system one.
Fix wrong usage of zmq::socket_t.recv
2014-02-07: Matthias P. Braendli <matthias@mpb.li>
(v0.4.0)
- * crc-dabmux:
+ * odr-dabmux:
CRC-DabMux renamed to ODR-DabMux
Version bump to 0.4.0
diff --git a/INSTALL b/INSTALL
index 5f86e80..6b03944 100644
--- a/INSTALL
+++ b/INSTALL
@@ -17,9 +17,19 @@ Simple install procedure using tarball release:
[as root]
% make install # Install the library
+ # install zeromq 4.0.3
+ % wget http://download.zeromq.org/zeromq-4.0.3.tar.gz
+ % tar -f zeromq-4.0.3.tar.gz -x
+ % cd zeromq-4.0.3
+ % ./configure
+ % make
+ [as root]
+ % make install
+
% tar xjf odr-dabmux-x.y.z.tar.bz2 # Unpack the source
% cd odr-dabmux-x.y.z # Change to the source directory
- % ./configure # Run the configure script
+ % ./configure --enable-input-zeromq --enable-output-zeromq
+ # Run the configure script
% make # Build ODR-DabMux
[ as root ]
% make install # Install ODR-DabMux
@@ -27,10 +37,14 @@ Simple install procedure using tarball release:
Nearly as simple install procedure using repository:
====================================================
+The code in the repository is more recent than the latest
+release and could be less stable, but already have new
+features.
+
* Download and install fec as above
* Clone the git repository
* Bootstrap autotools:
- % aclocal && automake --gnu --add-missing && autoconf
+ % ./bootstrap.sh
* Then use ./configure as above
diff --git a/README b/README
index b1a65e0..99237c5 100644
--- a/README
+++ b/README
@@ -11,6 +11,7 @@ In addition to the features of CRC-DabMux, this fork contains:
- timestamping support required for SFN
- a ZeroMQ ETI output that can be used with ODR-DABMOD
- a ZeroMQ dabplus input that can be used with fdk-aac-dabplus-zmq
+ and toolame-dab
- supports logging to syslog
- supports ZMQ input monitoring with munin tool
- supports a Telnet Remote Control for setting/getting parameters
diff --git a/configure.ac b/configure.ac
index 2c9bcb2..0af2805 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.2], [matthias.braendli@mpb.li])
+AC_INIT([ODR-DabMux], [0.4.3], [matthias.braendli@mpb.li])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE([-Wall subdir-objects])