diff options
author | Daniel Elstner <daniel.kitta@gmail.com> | 2015-09-13 22:07:11 +0200 |
---|---|---|
committer | Daniel Elstner <daniel.kitta@gmail.com> | 2015-09-13 22:07:11 +0200 |
commit | 367843620d039ad183bc4d7c33d91c316d717621 (patch) | |
tree | c2deb210b2f59905493a6a4cc9a4f7e87331354c /tests | |
parent | 4916b17368e8ed06f4bfd045052ab0f891c33954 (diff) | |
download | libsigrokdecode-367843620d039ad183bc4d7c33d91c316d717621.tar.gz libsigrokdecode-367843620d039ad183bc4d7c33d91c316d717621.zip |
Build: Include <config.h> first in all source files
Since Autoconf places some important feature flags only into the
configuration header, it is necessary to include it globally to
guarantee a consistent build.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core.c | 1 | ||||
-rw-r--r-- | tests/decoder.c | 1 | ||||
-rw-r--r-- | tests/inst.c | 1 | ||||
-rw-r--r-- | tests/main.c | 1 | ||||
-rw-r--r-- | tests/session.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tests/core.c b/tests/core.c index 3b3d022..3b26a2e 100644 --- a/tests/core.c +++ b/tests/core.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <config.h> #include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> diff --git a/tests/decoder.c b/tests/decoder.c index 726e17c..97d5767 100644 --- a/tests/decoder.c +++ b/tests/decoder.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <config.h> #include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> diff --git a/tests/inst.c b/tests/inst.c index fe7e1f9..8d30b12 100644 --- a/tests/inst.c +++ b/tests/inst.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <config.h> #include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> diff --git a/tests/main.c b/tests/main.c index 96b6f43..19c459d 100644 --- a/tests/main.c +++ b/tests/main.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <config.h> #include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> diff --git a/tests/session.c b/tests/session.c index 2ca16b3..431ab5e 100644 --- a/tests/session.c +++ b/tests/session.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <config.h> #include "../libsigrokdecode-internal.h" /* First, to avoid compiler warning. */ #include "../libsigrokdecode.h" #include <stdint.h> |