]> granicus.if.org Git - procps-ng/commitdiff
build-sys: fix some important 'tests.h' related issues
authorJim Warner <james.warner@comcast.net>
Sat, 15 Aug 2020 16:11:11 +0000 (11:11 -0500)
committerCraig Small <csmall@dropbear.xyz>
Mon, 17 Aug 2020 11:49:08 +0000 (21:49 +1000)
Exploiting a header file shouldn't also force users to
code their own '#include <stdio.h>'. More importantly,
unless this header is mentioned in dist_noinst_HEADERS
we'd fail 'make distcheck' with the error shown below.

[ the same error will apply to all 'noinst_PROGRAMS' ]
[ that happen to use this header. but please, do not ]
[ ask me to explain exactly why or how my fix works! ]

Reference(s):
../../proc/test_pids.c:24:10: fatal error: tests.h: No such file or directory
   24 | #include "tests.h"
      |          ^~~~~~~~~

Signed-off-by: Jim Warner <james.warner@comcast.net>
include/Makefile.am
include/tests.h

index 84fe3a6c6886a7d2e56d893963f2be4eb86d1279..9f978905e9a57a793ed4a03dd16173b91665dcd4 100644 (file)
@@ -6,4 +6,5 @@ dist_noinst_HEADERS = \
        rpmatch.h \
        signals.h \
        strutils.h \
+       tests.h \
        xalloc.h
index 1774f52d96965a6d550ed85495b741d327f013ec..324cc2252e5d42dfdb38746f7cd5daae0db14a0e 100644 (file)
@@ -2,6 +2,8 @@
 #ifndef PROCPS_NG_TESTS_H
 #define PROCPS_NG_TESTS_H
 
+#include <stdio.h>
+
 typedef int (*TestFunction)(void *data);
 
 char *testname;