mirror of https://github.com/xzeldon/htop.git
Fix Solaris / OmniOS build
This commit is contained in:
parent
9fc72c1e9c
commit
79db69c48d
|
@ -6,8 +6,8 @@ in the source distribution for its full text.
|
|||
*/
|
||||
|
||||
#include "SignalsPanel.h"
|
||||
// the above contains #include <signal.h> so do not add that here again (breaks Solaris build)
|
||||
|
||||
#include <signal.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "FunctionBar.h"
|
||||
|
|
|
@ -7,7 +7,11 @@ Released under the GNU GPLv2+, see the COPYING file
|
|||
in the source distribution for its full text.
|
||||
*/
|
||||
|
||||
#include "config.h" // IWYU pragma: keep
|
||||
|
||||
#ifndef HTOP_SOLARIS
|
||||
#include <signal.h>
|
||||
#endif
|
||||
|
||||
#include "Panel.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue