summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usrp/host/lib/db_base.cc4
-rw-r--r--usrp/host/lib/db_basic.cc4
-rw-r--r--usrp/host/lib/db_boards.cc4
-rw-r--r--usrp/host/lib/db_dbs_rx.cc4
-rw-r--r--usrp/host/lib/db_dtt754.cc4
-rw-r--r--usrp/host/lib/db_dtt768.cc4
-rw-r--r--usrp/host/lib/db_flexrf.cc4
-rw-r--r--usrp/host/lib/db_tv_rx.cc4
-rw-r--r--usrp/host/lib/db_xcvr2450.cc4
-rw-r--r--usrp/host/lib/usrp_standard.cc4
10 files changed, 40 insertions, 0 deletions
diff --git a/usrp/host/lib/db_base.cc b/usrp/host/lib/db_base.cc
index 102166a86..1cb463429 100644
--- a/usrp/host/lib/db_base.cc
+++ b/usrp/host/lib/db_base.cc
@@ -19,6 +19,10 @@
// Boston, MA 02110-1301, USA.
//
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_base.h>
#include <db_base_impl.h>
diff --git a/usrp/host/lib/db_basic.cc b/usrp/host/lib/db_basic.cc
index 0c6bedec4..1694d6a3f 100644
--- a/usrp/host/lib/db_basic.cc
+++ b/usrp/host/lib/db_basic.cc
@@ -18,6 +18,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_basic.h>
#include <db_base_impl.h>
diff --git a/usrp/host/lib/db_boards.cc b/usrp/host/lib/db_boards.cc
index d6c644704..8ef5bac8b 100644
--- a/usrp/host/lib/db_boards.cc
+++ b/usrp/host/lib/db_boards.cc
@@ -20,6 +20,10 @@
// Boston, MA 02110-1301, USA.
//
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <db_boards.h>
#include <usrp/usrp_dbid.h>
#include <usrp/db_basic.h>
diff --git a/usrp/host/lib/db_dbs_rx.cc b/usrp/host/lib/db_dbs_rx.cc
index 99f66c785..98b05d0bf 100644
--- a/usrp/host/lib/db_dbs_rx.cc
+++ b/usrp/host/lib/db_dbs_rx.cc
@@ -18,6 +18,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_dbs_rx.h>
#include <db_base_impl.h>
#include <cmath>
diff --git a/usrp/host/lib/db_dtt754.cc b/usrp/host/lib/db_dtt754.cc
index d78c5b328..9634c610d 100644
--- a/usrp/host/lib/db_dtt754.cc
+++ b/usrp/host/lib/db_dtt754.cc
@@ -19,6 +19,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_dtt754.h>
#include <db_base_impl.h>
diff --git a/usrp/host/lib/db_dtt768.cc b/usrp/host/lib/db_dtt768.cc
index a520fdc60..68e307723 100644
--- a/usrp/host/lib/db_dtt768.cc
+++ b/usrp/host/lib/db_dtt768.cc
@@ -19,6 +19,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_dtt768.h>
#include <db_base_impl.h>
diff --git a/usrp/host/lib/db_flexrf.cc b/usrp/host/lib/db_flexrf.cc
index 2d2bfabbb..f6b44834b 100644
--- a/usrp/host/lib/db_flexrf.cc
+++ b/usrp/host/lib/db_flexrf.cc
@@ -18,6 +18,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_flexrf.h>
#include <db_base_impl.h>
diff --git a/usrp/host/lib/db_tv_rx.cc b/usrp/host/lib/db_tv_rx.cc
index 494ee7a1a..4b28e9bc1 100644
--- a/usrp/host/lib/db_tv_rx.cc
+++ b/usrp/host/lib/db_tv_rx.cc
@@ -18,6 +18,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_tv_rx.h>
#include <db_base_impl.h>
diff --git a/usrp/host/lib/db_xcvr2450.cc b/usrp/host/lib/db_xcvr2450.cc
index 408a05587..72367286c 100644
--- a/usrp/host/lib/db_xcvr2450.cc
+++ b/usrp/host/lib/db_xcvr2450.cc
@@ -18,6 +18,10 @@
// the Free Software Foundation, Inc., 51 Franklin Street,
// Boston, MA 02110-1301, USA.
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/db_xcvr2450.h>
#include <db_base_impl.h>
#include <cmath>
diff --git a/usrp/host/lib/usrp_standard.cc b/usrp/host/lib/usrp_standard.cc
index b112dbe0c..541dd3f57 100644
--- a/usrp/host/lib/usrp_standard.cc
+++ b/usrp/host/lib/usrp_standard.cc
@@ -20,6 +20,10 @@
* Boston, MA 02110-1301, USA.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <usrp/usrp_standard.h>
#include "usrp/usrp_prims.h"