summaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Collapse)Author
2021-01-11Add option to drop Linux capabilitiesChristian Göttsche
Conflicts with setuid support, but that is commonly not enabled.
2021-01-11Update version number to 3.0.6-dev to identify git repo buildsDaniel Lange
2021-01-11Release 3.0.53.0.5Daniel Lange
2020-12-22Update version number for git repo buildsNathan Scott
2020-12-22Bump version number for 3.0.4 release3.0.4Nathan Scott
2020-12-20DragonFlyBSD updateChristian Göttsche
- drop unused kinfo includes and link argument - detect kvm library necessity at configure step - fix variable typo
2020-12-19Enable -Wformat=2Christian Göttsche
Now that the global format variable Process_pidFormat is gone, enable the compiler warning -Wformat=2.
2020-12-18Support clock_gettime() on OSX El Capitan and earlierChristian Göttsche
2020-12-13Correct timebase for non-x86 CPUs on DarwinBenny Baumann
Fixes: #368
2020-12-13Check if clock_gettime needs linking of librtChris Burr
2020-12-12Indentation and line continuation fixes in configure.acBenny Baumann
2020-12-07configure: check for additional linker flags for keypad(3)Christian Göttsche
Gentoo requires an explicit addition of -ltinfo Resolves: https://bugs.gentoo.org/show_bug.cgi?id=690840
2020-12-07Correct the version of htop development repoNathan Scott
2020-12-07Change version string to note development repo buildNathan Scott
2020-12-07Bump version number for 3.0.3 release3.0.3Nathan Scott
2020-12-04Update changelog for upcoming 3.0.3 release, annotate rc13.0.3rc1Nathan Scott
2020-12-03Fix sensors configure argumentChristian Göttsche
2020-12-02Dynamically load libsensors at runtimeChristian Göttsche
2020-11-28configure: do not check functions we are using unconditionallyChristian Göttsche
2020-11-28Add compat mode for systems without openat(2)Christian Göttsche
2020-11-26configure: create typedefs for fixed-sized integers if neededChristian Göttsche
If not defined in stdint.h or inttypes.h See https://www.gnu.org/software/autoconf/manual/autoconf-2.62/html_node/Particular-Types.html
2020-11-25Drop taskstats conditionalChristian Göttsche
taskstats is only checked on runtime if the column RCHAR, WCHAR, SYSCR, SYSCW, RBYTES, WBYTES, CNCLWB, IO_READ_RATE, IO_WRITE_RATE or IO_RATE is selected. taskstats is currently enabled by default. Drop the taskstats configuration switch, to reduce the maintenance cost.
2020-11-25Drop cgroup conditionalChristian Göttsche
cgroup is only checked on runtime if the column CGROUP is selected. cgroup is currently disabled by default, but most distributions do enable it. Drop the cgroup configuration switch, to reduce the maintenance cost.
2020-11-24Compatibility function for faccessatBenny Baumann
2020-11-17Merge branch 'temperature_v2' of cgzones/htopDaniel Lange
Closes #111, closes #49 Closes #93 - thank you for leading the way @DX37 (Maxim Kurnosenko)!
2020-11-16Add debug state to the configure report (thanks @benbe for the idea)Daniel Lange
2020-11-16Show CPU temperature in CPU meterChristian Göttsche
Show the CPU temperature in the CPU meter, like CPU frequency, instead of using an extra Meter.
2020-11-16hwloc = (portable) HardWare LOCality, not related to lockDaniel Lange
2020-11-15Resolve merge conflicts, merge #229 "Add SystemdMeter" from @cgzonesDaniel Lange
2020-11-09Implement screen for active file locksFynn Wulf
2020-10-31Add SystemdMeterChristian Göttsche
2020-10-29Add compat wrapper for fstatatChristian Göttsche
2020-10-29FreeBSD: implement Platform_getDiskIO()Christian Goettsche
2020-10-29Add HTOP_$platform defines to config.h headerChristian Göttsche
Can be used to conditionally compile platform specific code.
2020-10-16Automatically detect if backtrace(3) needs -lexecinfoChristian Göttsche
2020-10-07Set a -dev version to bug reports show a useful version and not the last releaseDaniel Lange
2020-10-06Enable -Wcast-qual compiler warningChristian Göttsche
2020-10-06Merge branch 'update-license-and-copyright-info'Nathan Scott
2020-10-05Mention platform for platform specific configure optionsChristian Göttsche
2020-10-05Update License consistently to GPLv2 as per COPYING fileDaniel Lange
2020-10-05Update copyright statementDaniel Lange
2020-10-05Merge branch 'attr-nonnull' of https://github.com/BenBE/htop into ↵Nathan Scott
BenBE-attr-nonnull
2020-10-03Add --enable-debug configure option to enable assertsChristian Göttsche
asserts are still disabled by default.
2020-09-29Enable NULL pointer checks via compiler if supportedBenny Baumann
2020-09-28Merge pull request #107 from cgzones/hwlock_linuxaffinityNathan Scott
Make --enable-hwloc and --enable-linux-affinity mutual exclusive
2020-09-25Add -Wmissing-prototypes compiler warningChristian Göttsche
2020-09-24Make --enable-hwloc and --enable-linux-affinity mutual exclusiveChristian Göttsche
They can not be supported both at the same time. Fail configure step instead of silently only use hwloc.
2020-09-24Add -Wfloat-equal to default build flagsBenny Baumann
2020-09-18Add some default compiler warningsChristian Göttsche
Compatible with gcc and clang.
2020-09-17autotools: enable warnings and cleanupChristian Göttsche
- enable warnings in autogen script - drop unused m4/ directory usage - drop AC_TYPE_SIGNAL: C99 guarantees the signal return type to be void - drop AC_CHECK_FILE of procdir: most of the time compilation is done on a different system than htop is run and there is a runtime check in place - improve linux_affinity corss compile logic: use fourth argument instead of pre-test