X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Ftest_arrays.c;h=e4b9fb1d391a013f65e0dd4c3a44cd679f40d8b3;hp=3764b604eed72a8ed051b3f5d568ca98a2e45d16;hb=445bfe6a0fb691e3433d586a188be2ebe062384b;hpb=dfaa1a3001fd447819f5edc2e523acc1a04f1440 diff --git a/test/test_arrays.c b/test/test_arrays.c index 3764b604..e4b9fb1d 100644 --- a/test/test_arrays.c +++ b/test/test_arrays.c @@ -26,7 +26,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: test_arrays.c,v 1.4 2009/07/17 00:09:00 tom Exp $ + * $Id: test_arrays.c,v 1.5 2010/11/13 19:57:57 tom Exp $ * * Author: Thomas E Dickey * @@ -47,6 +47,7 @@ extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strfnames[]; #define USE_TINFO #include +#if HAVE_TIGETSTR #if defined(HAVE_CURSES_DATA_BOOLNAMES) || defined(DECL_CURSES_DATA_BOOLNAMES) #define DUMP(name) dump_array(#name, name) @@ -88,3 +89,11 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) ExitProgram(EXIT_FAILURE); } #endif +#else /* !HAVE_TIGETSTR */ +int +main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) +{ + printf("This program requires the terminfo functions such as tigetstr\n"); + ExitProgram(EXIT_FAILURE); +} +#endif /* HAVE_TIGETSTR */