From 2e5446ad9f86e1c4730f2ad3f86d0e1d23b19e76 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Tue, 27 Jan 2015 21:20:27 +0100 Subject: [PATCH] add $(top_builddir) to include path for sectionsd- and timerdclient Without this, on some systems the system headers are searched first for the DVB includes before the paths provided via CFLAGS are searched. This sounds like a preprocessor bug, but this "fix" is surely harmless. --- lib/sectionsdclient/Makefile.am | 1 + lib/timerdclient/Makefile.am | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/sectionsdclient/Makefile.am b/lib/sectionsdclient/Makefile.am index 016fb6603..6128e7ad2 100644 --- a/lib/sectionsdclient/Makefile.am +++ b/lib/sectionsdclient/Makefile.am @@ -1,4 +1,5 @@ AM_CPPFLAGS = \ + -I$(top_builddir) \ -I$(top_srcdir)/lib \ -I$(top_srcdir)/src/zapit/include \ -I$(top_srcdir)/lib/connection \ diff --git a/lib/timerdclient/Makefile.am b/lib/timerdclient/Makefile.am index ce2f0f72d..26c088853 100644 --- a/lib/timerdclient/Makefile.am +++ b/lib/timerdclient/Makefile.am @@ -1,4 +1,5 @@ AM_CPPFLAGS = \ + -I$(top_builddir) \ -I$(top_srcdir)/lib \ -I$(top_srcdir)/src/zapit/include \ -I$(top_srcdir)/lib/connection \