# HG changeset patch # User ib # Date 1391937729 0 # Node ID e9044aed2250621ffc2c7a750c60f64c3cf6f16a # Parent 962e2f41a08e25f4e712c8f5c4d60a0ad46f69fc Fix issue with testing of the help message header files. In order for all definitions to be checked properly, we cannot rely on config.h, but must assure that all conditional symbolic constants are defined. diff -r 962e2f41a08e -r e9044aed2250 help/help_check.sh --- a/help/help_check.sh Sat Feb 08 21:43:04 2014 +0000 +++ b/help/help_check.sh Sun Feb 09 09:22:09 2014 +0000 @@ -35,7 +35,12 @@ cat < ${CHECK}.c #include #include -#include "config.h" +#ifndef CONFIG_VCD +#define CONFIG_VCD +#endif +#ifndef CONFIG_DVDREAD +#define CONFIG_DVDREAD +#endif #include "$h" void $CHECK () { strdup(help_text);