2006-03-04 18:16:49 +00:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
2011-09-24 00:30:47 +00:00
AC_PREREQ(2.65)
2020-09-03 03:23:34 +00:00
AC_INIT([htop],[3.0.1],[htop@groups.io])
2015-01-22 01:27:31 +00:00
2006-03-04 18:16:49 +00:00
AC_CONFIG_SRCDIR([htop.c])
2016-03-12 04:02:06 +00:00
AC_CONFIG_AUX_DIR([.])
2016-03-12 03:58:30 +00:00
AC_CONFIG_HEADERS([config.h])
2010-11-20 18:54:39 +00:00
AC_CONFIG_MACRO_DIR([m4])
2006-03-04 18:16:49 +00:00
2016-03-12 04:02:06 +00:00
# Required by hwloc scripts
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([1.11])
2006-03-04 18:16:49 +00:00
# Checks for programs.
2014-11-20 01:17:16 +00:00
# ----------------------------------------------------------------------
2006-03-04 18:16:49 +00:00
AC_PROG_CC
2008-03-05 09:46:47 +00:00
AM_PROG_CC_C_O
2016-03-12 04:02:06 +00:00
# Required by hwloc scripts
AC_USE_SYSTEM_EXTENSIONS
2014-11-24 20:55:03 +00:00
# Checks for platform.
# ----------------------------------------------------------------------
2016-04-18 22:55:55 +00:00
case "$target_os" in
2016-04-18 22:57:30 +00:00
linux*|gnu*)
2014-11-24 20:55:03 +00:00
my_htop_platform=linux
;;
2016-04-18 22:55:55 +00:00
freebsd*|kfreebsd*)
2014-11-27 18:27:34 +00:00
my_htop_platform=freebsd
;;
2016-04-18 22:55:55 +00:00
openbsd*)
2015-09-18 04:46:48 +00:00
my_htop_platform=openbsd
;;
2017-04-19 14:12:17 +00:00
dragonfly*)
my_htop_platform=dragonflybsd
;;
2016-04-18 22:55:55 +00:00
darwin*)
2015-07-12 18:47:43 +00:00
my_htop_platform=darwin
;;
2018-03-02 21:20:46 +00:00
solaris*)
my_htop_platform=solaris
;;
2014-11-24 20:55:03 +00:00
*)
my_htop_platform=unsupported
;;
esac
2006-03-04 18:16:49 +00:00
# Checks for libraries.
2014-11-20 01:17:16 +00:00
# ----------------------------------------------------------------------
2006-07-12 01:15:14 +00:00
AC_CHECK_LIB([m], [ceil], [], [missing_libraries="$missing_libraries libm"])
2006-03-04 18:16:49 +00:00
# Checks for header files.
2014-11-20 01:17:16 +00:00
# ----------------------------------------------------------------------
2006-03-04 18:16:49 +00:00
AC_HEADER_DIRENT
AC_HEADER_STDC
2013-02-26 17:10:11 +00:00
AC_CHECK_HEADERS([stdlib.h string.h strings.h sys/param.h sys/time.h unistd.h],[:],[
2006-07-12 01:15:14 +00:00
missing_headers="$missing_headers $ac_header"
])
2010-12-05 15:43:56 +00:00
AC_CHECK_HEADERS([execinfo.h],[:],[:])
2006-07-12 01:15:14 +00:00
2018-02-26 13:15:05 +00:00
AC_HEADER_MAJOR
dnl glibc 2.25 deprecates 'major' and 'minor' in <sys/types.h> and requires to
dnl include <sys/sysmacros.h>. However the logic in AC_HEADER_MAJOR has not yet
dnl been updated in Autoconf 2.69, so use a workaround:
m4_version_prereq([2.70], [],
2018-12-30 04:18:27 +00:00
[if test "x$ac_cv_header_sys_mkdev_h" != xyes; then
2018-02-26 13:15:05 +00:00
AC_CHECK_HEADER(sys/sysmacros.h, [AC_DEFINE(MAJOR_IN_SYSMACROS, 1,
[Define to 1 if `major', `minor', and `makedev' are declared in <sys/sysmacros.h>.])])
fi])
2006-03-04 18:16:49 +00:00
# Checks for typedefs, structures, and compiler characteristics.
2014-11-20 01:17:16 +00:00
# ----------------------------------------------------------------------
2006-03-04 18:16:49 +00:00
AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_UID_T
2014-11-20 01:17:16 +00:00
# Checks for library functions and compiler features.
# ----------------------------------------------------------------------
2006-03-04 18:16:49 +00:00
AC_FUNC_CLOSEDIR_VOID
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_CHECK_FUNCS([memmove strncasecmp strstr strdup])
2008-03-05 09:46:47 +00:00
save_cflags="${CFLAGS}"
2006-03-04 18:16:49 +00:00
CFLAGS="${CFLAGS} -std=c99"
AC_MSG_CHECKING([whether gcc -std=c99 option works])
2016-03-12 03:58:30 +00:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[AC_INCLUDES_DEFAULT], [[char *a; a = strdup("foo"); int i = 0; i++; // C99]])],
[AC_MSG_RESULT([yes])],
[AC_MSG_ERROR([htop is written in C99. A newer version of gcc is required.])])
2008-03-05 09:46:47 +00:00
CFLAGS="$save_cflags"
2006-03-04 18:16:49 +00:00
2015-02-04 14:19:04 +00:00
save_cflags="${CFLAGS}"
CFLAGS="$CFLAGS -Wextra"
AC_MSG_CHECKING([if compiler supports -Wextra])
2016-03-12 03:58:30 +00:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])],[
2015-02-04 14:19:04 +00:00
wextra_flag=-Wextra
AC_MSG_RESULT([yes])
],[
wextra_flag=
AC_MSG_RESULT([no])
])
CFLAGS="$save_cflags"
AC_SUBST(wextra_flag)
2014-11-20 01:17:16 +00:00
# Checks for features and flags.
# ----------------------------------------------------------------------
2006-03-04 18:16:49 +00:00
PROCDIR=/proc
2014-11-24 20:55:03 +00:00
2016-03-12 03:58:30 +00:00
AC_ARG_WITH(proc, [AS_HELP_STRING([--with-proc=DIR], [Location of a Linux-compatible proc filesystem (default=/proc).])],
2020-08-28 09:56:07 +00:00
if test -n "$withval"; then
AC_DEFINE_UNQUOTED(PROCDIR, "$withval", [Path of proc filesystem])
PROCDIR="$withval"
fi,
AC_DEFINE(PROCDIR, "/proc", [Path of proc filesystem]))
2006-03-04 18:16:49 +00:00
2014-11-20 01:17:16 +00:00
if test "x$cross_compiling" = xno; then
2014-11-24 20:55:03 +00:00
if test "x$enable_proc" = xyes; then
AC_CHECK_FILE($PROCDIR/stat,,AC_MSG_ERROR(Cannot find $PROCDIR/stat. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.))
AC_CHECK_FILE($PROCDIR/meminfo,,AC_MSG_ERROR(Cannot find $PROCDIR/meminfo. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.))
fi
2014-11-20 01:17:16 +00:00
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(openvz, [AS_HELP_STRING([--enable-openvz], [enable OpenVZ support])], ,enable_openvz="no")
2007-08-10 05:07:14 +00:00
if test "x$enable_openvz" = xyes; then
2008-03-09 02:33:23 +00:00
AC_DEFINE(HAVE_OPENVZ, 1, [Define if openvz support enabled.])
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(cgroup, [AS_HELP_STRING([--enable-cgroup], [enable cgroups support])], ,enable_cgroup="no")
2010-10-30 19:24:07 +00:00
if test "x$enable_cgroup" = xyes; then
AC_DEFINE(HAVE_CGROUP, 1, [Define if cgroup support enabled.])
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(vserver, [AS_HELP_STRING([--enable-vserver], [enable VServer support])], ,enable_vserver="no")
2008-09-23 04:31:13 +00:00
if test "x$enable_vserver" = xyes; then
AC_DEFINE(HAVE_VSERVER, 1, [Define if vserver support enabled.])
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(ancient_vserver, [AS_HELP_STRING([--enable-ancient-vserver], [enable ancient VServer support (implies --enable-vserver)])], ,enable_ancient_vserver="no")
2008-09-23 04:31:13 +00:00
if test "x$enable_ancient_vserver" = xyes; then
AC_DEFINE(HAVE_VSERVER, 1, [Define if vserver support enabled.])
AC_DEFINE(HAVE_ANCIENT_VSERVER, 1, [Define if ancient vserver support enabled.])
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(taskstats, [AS_HELP_STRING([--enable-taskstats], [enable per-task IO Stats (taskstats kernel sup required)])], ,enable_taskstats="yes")
2008-03-09 08:02:22 +00:00
if test "x$enable_taskstats" = xyes; then
AC_DEFINE(HAVE_TASKSTATS, 1, [Define if taskstats support enabled.])
fi
2015-12-09 19:17:30 +00:00
# HTOP_CHECK_SCRIPT(LIBNAME, FUNCTION, DEFINE, CONFIG_SCRIPT, ELSE_PART)
m4_define([HTOP_CHECK_SCRIPT],
2015-11-30 18:36:22 +00:00
[
2016-07-11 23:12:07 +00:00
if test ! -z "m4_toupper($HTOP_[$1]_CONFIG_SCRIPT)"; then
# to be used to set the path to ncurses*-config when cross-compiling
2018-02-26 13:19:01 +00:00
htop_config_script_libs=$(m4_toupper($HTOP_[$1]_CONFIG_SCRIPT) --libs 2> /dev/null)
htop_config_script_cflags=$(m4_toupper($HTOP_[$1]_CONFIG_SCRIPT) --cflags 2> /dev/null)
2016-07-11 23:12:07 +00:00
else
2018-02-26 13:19:01 +00:00
htop_config_script_libs=$([$4] --libs 2> /dev/null)
htop_config_script_cflags=$([$4] --cflags 2> /dev/null)
2016-07-11 23:12:07 +00:00
fi
2015-12-09 19:17:30 +00:00
htop_script_success=no
htop_save_LDFLAGS="$LDFLAGS"
2018-02-26 13:19:01 +00:00
htop_save_CFLAGS="$CFLAGS"
if test ! "x$htop_config_script_libs" = x; then
LDFLAGS="$htop_config_script_libs $LDFLAGS"
CFLAGS="$htop_config_script_cflags $CFLAGS"
2015-12-09 19:17:30 +00:00
AC_CHECK_LIB([$1], [$2], [
AC_DEFINE([$3], 1, [The library is present.])
2018-02-26 13:19:01 +00:00
LIBS="$htop_config_script_libs $LIBS "
2015-12-09 19:17:30 +00:00
htop_script_success=yes
2018-02-26 13:19:01 +00:00
], [
CFLAGS="$htop_save_CFLAGS"
])
2018-02-17 16:50:55 +00:00
LDFLAGS="$htop_save_LDFLAGS"
2015-12-09 19:17:30 +00:00
fi
2015-12-09 19:34:57 +00:00
if test "x$htop_script_success" = xno; then
2015-12-09 19:17:30 +00:00
[$5]
2015-12-06 21:06:23 +00:00
fi
2015-12-09 19:17:30 +00:00
])
# HTOP_CHECK_LIB(LIBNAME, FUNCTION, DEFINE, ELSE_PART)
m4_define([HTOP_CHECK_LIB],
[
2015-11-30 18:36:22 +00:00
AC_CHECK_LIB([$1], [$2], [
AC_DEFINE([$3], 1, [The library is present.])
2015-12-09 19:17:30 +00:00
LIBS="-l[$1] $LIBS "
], [$4])
2015-11-30 18:36:22 +00:00
])
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(unicode, [AS_HELP_STRING([--enable-unicode], [enable Unicode support])], ,enable_unicode="yes")
2008-03-09 02:33:23 +00:00
if test "x$enable_unicode" = xyes; then
2015-12-09 19:17:30 +00:00
HTOP_CHECK_SCRIPT([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw6-config",
2017-04-19 14:12:17 +00:00
HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw6-config",
HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw5-config",
HTOP_CHECK_SCRIPT([ncurses], [addnwstr], [HAVE_LIBNCURSESW], "ncurses5-config",
HTOP_CHECK_LIB([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW],
HTOP_CHECK_LIB([ncursesw], [addnwstr], [HAVE_LIBNCURSESW],
HTOP_CHECK_LIB([ncurses], [addnwstr], [HAVE_LIBNCURSESW],
missing_libraries="$missing_libraries libncursesw"
AC_MSG_ERROR([You may want to use --disable-unicode or install libncursesw.])
)))))))
2015-12-09 19:17:30 +00:00
2011-09-08 01:45:16 +00:00
AC_CHECK_HEADERS([ncursesw/curses.h],[:],
2013-02-26 17:10:11 +00:00
[AC_CHECK_HEADERS([ncurses/ncurses.h],[:],
[AC_CHECK_HEADERS([ncurses/curses.h],[:],
[AC_CHECK_HEADERS([ncurses.h],[:],[missing_headers="$missing_headers $ac_header"])])])])
2008-03-09 02:33:23 +00:00
else
2015-12-09 19:17:30 +00:00
HTOP_CHECK_SCRIPT([ncurses6], [refresh], [HAVE_LIBNCURSES], "ncurses6-config",
HTOP_CHECK_SCRIPT([ncurses], [refresh], [HAVE_LIBNCURSES], "ncurses5-config",
HTOP_CHECK_LIB([ncurses6], [refresh], [HAVE_LIBNCURSES],
HTOP_CHECK_LIB([ncurses], [refresh], [HAVE_LIBNCURSES],
missing_libraries="$missing_libraries libncurses"
))))
2020-08-21 08:37:33 +00:00
2013-02-26 17:10:11 +00:00
AC_CHECK_HEADERS([curses.h],[:],
[AC_CHECK_HEADERS([ncurses/curses.h],[:],
[AC_CHECK_HEADERS([ncurses/ncurses.h],[:],
[AC_CHECK_HEADERS([ncurses.h],[:],[missing_headers="$missing_headers $ac_header"])])])])
2007-08-10 05:07:14 +00:00
fi
2014-11-27 20:31:39 +00:00
if test "$my_htop_platform" = "freebsd"; then
AC_CHECK_LIB([kvm], [kvm_open], [], [missing_libraries="$missing_libraries libkvm"])
fi
2015-09-18 04:46:48 +00:00
if test "$my_htop_platform" = "openbsd"; then
AC_CHECK_LIB([kvm], [kvm_open], [], [missing_libraries="$missing_libraries libkvm"])
fi
2018-03-02 21:20:46 +00:00
if test "$my_htop_platform" = "solaris"; then
AC_CHECK_LIB([kstat], [kstat_open], [], [missing_libraries="$missing_libraries libkstat"])
2018-03-28 16:48:37 +00:00
AC_CHECK_LIB([proc], [Pgrab_error], [], [missing_libraries="$missing_libraries libproc"])
2018-03-05 17:02:07 +00:00
AC_CHECK_LIB([malloc], [free], [], [missing_libraries="$missing_libraries libmalloc"])
2018-03-02 21:20:46 +00:00
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(linux_affinity, [AS_HELP_STRING([--enable-linux-affinity], [enable Linux sched_setaffinity and sched_getaffinity for affinity support, disables hwloc])], ,enable_linux_affinity="yes")
2016-02-14 21:57:29 +00:00
if test "x$enable_linux_affinity" = xyes -a "x$cross_compiling" = xno; then
2011-11-18 06:08:56 +00:00
AC_MSG_CHECKING([for usable sched_setaffinity])
AC_RUN_IFELSE([
AC_LANG_PROGRAM([[
#include <sched.h>
#include <errno.h>
static cpu_set_t cpuset;
]], [[
CPU_ZERO(&cpuset);
sched_setaffinity(0, sizeof(cpu_set_t), &cpuset);
if (errno == ENOSYS) return 1;
]])],
2011-11-23 18:43:35 +00:00
[AC_MSG_RESULT([yes])],
2016-02-14 21:57:29 +00:00
[enable_linux_affinity=no
2011-11-23 18:43:35 +00:00
AC_MSG_RESULT([no])])
fi
2016-02-14 21:57:29 +00:00
if test "x$enable_linux_affinity" = xyes; then
AC_DEFINE(HAVE_LINUX_AFFINITY, 1, [Define if Linux sched_setaffinity and sched_getaffinity are to be used.])
2011-11-18 06:08:56 +00:00
fi
2016-03-12 03:58:30 +00:00
AC_ARG_ENABLE(hwloc, [AS_HELP_STRING([--enable-hwloc], [enable hwloc support for CPU affinity])],, enable_hwloc="no")
2011-09-24 00:30:47 +00:00
if test "x$enable_hwloc" = xyes
2010-11-22 12:24:46 +00:00
then
2016-02-14 21:57:29 +00:00
AC_CHECK_LIB([hwloc], [hwloc_get_proc_cpubind], [], [missing_libraries="$missing_libraries libhwloc"])
2011-11-21 02:52:41 +00:00
AC_CHECK_HEADERS([hwloc.h],[:], [missing_headers="$missing_headers $ac_header"])
2011-09-24 00:30:47 +00:00
fi
2008-03-05 09:46:47 +00:00
2017-07-26 18:40:55 +00:00
AC_ARG_ENABLE(setuid, [AS_HELP_STRING([--enable-setuid], [enable setuid support for platforms that need it])],, enable_setuid="no")
if test "x$enable_setuid" = xyes
then
AC_DEFINE(HAVE_SETUID_ENABLED, 1, [Define if setuid support should be enabled.])
fi
2018-04-06 14:03:00 +00:00
AC_ARG_ENABLE(delayacct, [AS_HELP_STRING([--enable-delayacct], [enable Linux delay accounting])],, enable_delayacct="no")
2017-12-04 02:15:29 +00:00
if test "x$enable_delayacct" = xyes
then
2018-04-06 14:03:00 +00:00
m4_ifdef([PKG_PROG_PKG_CONFIG], [
PKG_PROG_PKG_CONFIG()
PKG_CHECK_MODULES(LIBNL3, libnl-3.0, [], [missing_libraries="$missing_libraries libnl-3"])
PKG_CHECK_MODULES(LIBNL3GENL, libnl-genl-3.0, [], [missing_libraries="$missing_libraries libnl-genl-3"])
CFLAGS="$CFLAGS $LIBNL3_CFLAGS $LIBNL3GENL_CFLAGS"
LIBS="$LIBS $LIBNL3_LIBS $LIBNL3GENL_LIBS"
AC_DEFINE(HAVE_DELAYACCT, 1, [Define if delay accounting support should be enabled.])
], [
2018-04-06 15:47:55 +00:00
pkg_m4_absent=1
m4_warning([configure is generated without pkg.m4. 'make dist' target will be disabled.])
AC_MSG_ERROR([htop on Linux requires pkg-config for checking delayacct requirements. Please install pkg-config and run ./autogen.sh to rebuild the configure script.])
2018-04-06 14:03:00 +00:00
])
2017-12-04 02:15:29 +00:00
fi
2020-08-21 08:37:20 +00:00
AC_ARG_ENABLE([werror], [AS_HELP_STRING([--enable-werror], [Treat warnings as errors (default: warnings are not errors)])], [enable_werror="$enableval"], [enable_werror=no])
AS_IF([test "x$enable_werror" = "xyes"], [AM_CFLAGS="$AM_CFLAGS -Werror"])
AC_SUBST([AM_CFLAGS])
2017-12-04 02:15:29 +00:00
2020-08-23 01:24:52 +00:00
AC_CHECK_PROGS(PYTHON, [python python3 python2])
AC_SUBST(PYTHON)
2014-11-20 01:17:16 +00:00
# Bail out on errors.
# ----------------------------------------------------------------------
if test ! -z "$missing_libraries"; then
AC_MSG_ERROR([missing libraries: $missing_libraries])
fi
if test ! -z "$missing_headers"; then
AC_MSG_ERROR([missing headers: $missing_headers])
fi
2020-08-20 03:16:31 +00:00
AC_DEFINE_UNQUOTED(COPYRIGHT, "(C) 2004-2018 Hisham Muhammad", [Copyright message.])
2015-01-22 01:27:31 +00:00
2014-11-20 01:17:16 +00:00
# We're done, let's go!
# ----------------------------------------------------------------------
2014-11-24 22:11:33 +00:00
AM_CONDITIONAL([HTOP_LINUX], [test "$my_htop_platform" = linux])
2014-11-27 18:27:34 +00:00
AM_CONDITIONAL([HTOP_FREEBSD], [test "$my_htop_platform" = freebsd])
2017-04-19 14:12:17 +00:00
AM_CONDITIONAL([HTOP_DRAGONFLYBSD], [test "$my_htop_platform" = dragonflybsd])
2015-09-18 04:46:48 +00:00
AM_CONDITIONAL([HTOP_OPENBSD], [test "$my_htop_platform" = openbsd])
2015-07-12 18:47:43 +00:00
AM_CONDITIONAL([HTOP_DARWIN], [test "$my_htop_platform" = darwin])
2018-03-02 21:20:46 +00:00
AM_CONDITIONAL([HTOP_SOLARIS], [test "$my_htop_platform" = solaris])
2014-11-24 22:11:33 +00:00
AM_CONDITIONAL([HTOP_UNSUPPORTED], [test "$my_htop_platform" = unsupported])
2014-11-24 20:55:03 +00:00
AC_SUBST(my_htop_platform)
2020-08-24 19:37:28 +00:00
AC_CONFIG_FILES([Makefile htop.1])
AC_CONFIG_FILES([scripts/MakeHeader.py], [chmod +x scripts/MakeHeader.py])
2006-03-04 18:16:49 +00:00
AC_OUTPUT
2017-07-10 23:14:25 +00:00
if test "$my_htop_platform" = "unsupported"
then
echo ""
echo "****************************************************************"
echo "WARNING! This platform is not currently supported by htop."
echo ""
echo "The code will build, but it will produce a dummy version of htop"
echo "which shows no processes, using the files from the unsupported/"
echo "directory. This is meant to be a skeleton, to be used as a"
echo "starting point if you are porting htop to a new platform."
echo "****************************************************************"
echo ""
fi
2020-08-28 10:10:31 +00:00
AC_MSG_RESULT([
${PACKAGE_NAME} ${VERSION}
platform: $my_htop_platform
proc directory: $PROCDIR
openvz: $enable_openvz
cgroup: $enable_cgroup
vserver: $enable_vserver
ancient vserver: $enable_ancient_vserver
taskstats: $enable_taskstats
unicode: $enable_unicode
linux affinity: $enable_linux_affinity
hwlock: $enable_hwloc
setuid: $enable_setuid
linux delay accounting: $enable_delayacct
])