1/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying 2 file LICENSE.rst or https://cmake.org/licensing for details. */ 3#pragma once 4 5#include "cmConfigure.h" // IWYU pragma: keep 6 7#if defined(__hpux) 8# define _BOOL_DEFINED 9# include <sys/time.h> 10#endif 11 12// Tell curses headers on Solaris to not define macros 13// that conflict with C++ standard library interfaces. 14#if defined(__sun__) 15# define NOMACROS 16# define NCURSES_NOMACROS 17#endif 18 19#include <form.h> 20 21