aboutsummaryrefslogtreecommitdiffstats
path: root/src/dabOutput/dabOutputZMQ.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-31 08:13:54 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-31 08:13:54 +0100
commita270d5efcaa019f02e169497cf069f8d462ab398 (patch)
tree371ca812c67a129b20d6aca39f06b338218f846c /src/dabOutput/dabOutputZMQ.cpp
parent72420013928a2d00855ed8ae9c42ac6e229a0b87 (diff)
downloaddabmux-a270d5efcaa019f02e169497cf069f8d462ab398.tar.gz
dabmux-a270d5efcaa019f02e169497cf069f8d462ab398.tar.bz2
dabmux-a270d5efcaa019f02e169497cf069f8d462ab398.zip
fix zmq.h include error when ZMQ disabled
Diffstat (limited to 'src/dabOutput/dabOutputZMQ.cpp')
-rw-r--r--src/dabOutput/dabOutputZMQ.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dabOutput/dabOutputZMQ.cpp b/src/dabOutput/dabOutputZMQ.cpp
index 271cfa1..24fa6dc 100644
--- a/src/dabOutput/dabOutputZMQ.cpp
+++ b/src/dabOutput/dabOutputZMQ.cpp
@@ -32,7 +32,9 @@
You should have received a copy of the GNU General Public License
along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
#if defined(HAVE_OUTPUT_ZEROMQ)