mirror of https://github.com/xzeldon/htop.git
Work on fixing build of "unsupported" platform
This commit is contained in:
parent
aed9b9d18e
commit
cce2202a1f
10
Makefile.am
10
Makefile.am
|
@ -42,11 +42,13 @@ linux/LinuxProcess.h linux/LinuxProcessList.h linux/LinuxCRT.h linux/Battery.h
|
|||
endif
|
||||
|
||||
if HTOP_UNSUPPORTED
|
||||
myhtopplatsources = unsupported/Platform.c unsupported/UnsupportedProcessList.c \
|
||||
unsupported/UnsupportedCRT.c
|
||||
myhtopplatsources = unsupported/Platform.c \
|
||||
unsupported/UnsupportedProcess.c unsupported/UnsupportedProcessList.c \
|
||||
unsupported/UnsupportedCRT.c unsupported/Battery.c
|
||||
|
||||
myhtopplatheaders = unsupported/Platform.h unsupported/UnsupportedProcessList.h \
|
||||
unsupported/UnsupportedCRT.h
|
||||
myhtopplatheaders = unsupported/Platform.h \
|
||||
unsupported/UnsupportedProcess.h unsupported/UnsupportedProcessList.h \
|
||||
unsupported/UnsupportedCRT.h unsupported/Battery.h
|
||||
endif
|
||||
|
||||
SUFFIXES = .h
|
||||
|
|
|
@ -18,6 +18,7 @@ in the source distribution for its full text.
|
|||
/*{
|
||||
#include "Action.h"
|
||||
#include "BatteryMeter.h"
|
||||
#include "UnsupportedProcess.h"
|
||||
}*/
|
||||
|
||||
void Platform_setBindings(Htop_Action* keys) {
|
||||
|
@ -59,8 +60,3 @@ int Platform_getMaxPid() {
|
|||
return -1;
|
||||
}
|
||||
|
||||
void Platform_getBatteryLevel(double* level, ACPresence* isOnAC) {
|
||||
*level = -1;
|
||||
*isOnAC = AC_ERROR;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@ in the source distribution for its full text.
|
|||
*/
|
||||
|
||||
#include "Action.h"
|
||||
#include "BatteryMeter.h"
|
||||
#include "UnsupportedProcess.h"
|
||||
|
||||
void Platform_setBindings(Htop_Action* keys);
|
||||
|
||||
|
@ -17,4 +19,9 @@ extern MeterClass* Platform_meterTypes[];
|
|||
|
||||
int Platform_getUptime();
|
||||
|
||||
void Platform_getLoadAverage(double* one, double* five, double* fifteen);
|
||||
|
||||
int Platform_getMaxPid();
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue