Imported Upstream version 2.7.2

This commit is contained in:
Laurent Bigonville 2014-04-22 20:39:47 +02:00
parent 0121794af9
commit a356b56d11
263 changed files with 6039 additions and 8151 deletions

463
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for nut 2.7.1.
# Generated by GNU Autoconf 2.69 for nut 2.7.2.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='nut'
PACKAGE_TARNAME='nut'
PACKAGE_VERSION='2.7.1'
PACKAGE_STRING='nut 2.7.1'
PACKAGE_VERSION='2.7.2'
PACKAGE_STRING='nut 2.7.2'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@ -640,6 +640,7 @@ systemdsystemshutdowndir
systemdsystemunitdir
pkgconfigdir
driverexecdir
devddir
cgiexecdir
WORDS_BIGENDIAN
SUN_LIBUSB
@ -657,12 +658,6 @@ NETLIBS
DRIVER_INSTALL_TARGET
DRIVER_MAN_LIST
DRIVER_BUILD_LIST
LIBHAL_LIBS
LIBHAL_CFLAGS
HAL_CALLOUTS_PATH
HAL_FDI_PATH
HAL_DEVICE_MATCH_KEY
HAL_USER
LIBLTDL_LIBS
LIBLTDL_CFLAGS
LIBWRAP_LIBS
@ -692,6 +687,8 @@ HAVE_ASPELL_TRUE
ASPELL
MANUALUPDATE_FALSE
MANUALUPDATE_TRUE
WITH_DEVD_FALSE
WITH_DEVD_TRUE
WITH_UDEV_FALSE
WITH_UDEV_TRUE
WITH_HOTPLUG_FALSE
@ -729,8 +726,6 @@ WITH_ASCIIDOC_TRUE
DBLATEX
A2X
ASCIIDOC
WITH_HAL_FALSE
WITH_HAL_TRUE
WITH_CGI_FALSE
WITH_CGI_TRUE
WITH_LIBLTDL_FALSE
@ -888,13 +883,6 @@ with_snmp_includes
with_snmp_libs
with_usb_includes
with_usb_libs
with_hal
with_hal_includes
with_hal_libs
with_hal_user
with_hal_device_match_key
with_hal_callouts_path
with_hal_fdi_path
with_snmp
with_neon
with_neon_includes
@ -946,6 +934,7 @@ with_pkgconfig_dir
with_systemdsystemunitdir
with_hotplug_dir
with_udev_dir
with_devd_dir
'
ac_precious_vars='build_alias
host_alias
@ -1505,7 +1494,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures nut 2.7.1 to adapt to many kinds of systems.
\`configure' configures nut 2.7.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1576,7 +1565,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of nut 2.7.1:";;
short | recursive ) echo "Configuration of nut 2.7.2:";;
esac
cat <<\_ACEOF
@ -1611,17 +1600,6 @@ Optional Packages:
[--with-usb-includes=CFLAGS]
include flags for the libusb library
[--with-usb-libs=LIBS] linker flags for the libusb library
--with-hal build and install HAL support (no)
[--with-hal-includes=CFLAGS]
include flags for the HAL library
[--with-hal-libs=LIBS] linker flags for the HAL library
[--with-hal-user=USER] addons run as user
[--with-hal-device-match-key=KEY]
device match key
[--with-hal-callouts-path=PATH]
installation path for callouts
[--with-hal-fdi-path=PATH]
installation path for device information files
--with-snmp build and install SNMP drivers (auto)
--with-neon build and install neon based XML/HTTP driver (auto)
[--with-neon-includes=CFLAGS]
@ -1692,6 +1670,8 @@ Optional Packages:
Directory for systemd service files (auto)
--with-hotplug-dir=PATH where to install hotplug rules (/etc/hotplug)
--with-udev-dir=PATH where to install udev rules (/lib/udev or /etc/udev)
--with-devd-dir=PATH where to install devd.conf file (/usr/local/etc/devd
or /etc/devd)
Some influential environment variables:
CC C compiler command
@ -1781,7 +1761,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
nut configure 2.7.1
nut configure 2.7.2
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@ -2367,7 +2347,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by nut $as_me 2.7.1, which was
It was created by nut $as_me 2.7.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@ -3438,7 +3418,7 @@ fi
# Define the identity of the package.
PACKAGE='nut'
VERSION='2.7.1'
VERSION='2.7.2'
cat >>confdefs.h <<_ACEOF
@ -4992,6 +4972,14 @@ if test ! -d "${udevdir}"; then
fi
fi
devddir='/usr/local/etc/devd'
if test ! -d "${devddir}"; then
devddir='/etc/devd'
if test ! -d "${devddir}"; then
devddir=''
fi
fi
RUN_AS_USER="nobody"
RUN_AS_GROUP="nobody"
PIDPATH="/var/run"
@ -8076,277 +8064,6 @@ done
fi
# Check whether --with-hal was given.
if test "${with_hal+set}" = set; then :
withval=$with_hal; nut_with_hal="${withval}"
else
nut_with_hal="no"
fi
if test -z "${nut_have_libhal_seen}"; then
nut_have_libhal_seen=yes
CFLAGS_ORIG="${CFLAGS}"
LIBS_ORIG="${LIBS}"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal version via pkg-config (0.5.8 minimum required)" >&5
$as_echo_n "checking for libhal version via pkg-config (0.5.8 minimum required)... " >&6; }
HAL_VERSION="`pkg-config --silence-errors --modversion hal 2>/dev/null`"
if test "$?" != "0" -o -z "${HAL_VERSION}"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: none found" >&5
$as_echo "none found" >&6; }
elif pkg-config --silence-errors --atleast-version=0.5.8 hal 2>/dev/null; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${HAL_VERSION} found" >&5
$as_echo "${HAL_VERSION} found" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: ${HAL_VERSION} is too old" >&5
$as_echo "$as_me: WARNING: ${HAL_VERSION} is too old" >&2;}
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal cflags" >&5
$as_echo_n "checking for libhal cflags... " >&6; }
# Check whether --with-hal-includes was given.
if test "${with_hal_includes+set}" = set; then :
withval=$with_hal_includes;
case "${withval}" in
yes|no)
as_fn_error $? "invalid option --with(out)-hal-includes - see docs/configure.txt" "$LINENO" 5
;;
*)
CFLAGS="${withval}"
;;
esac
else
CFLAGS="`pkg-config --silence-errors --cflags hal dbus-glib-1 2>/dev/null`"
if test "$?" != "0"; then
CFLAGS="-DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/hal -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${CFLAGS}" >&5
$as_echo "${CFLAGS}" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal ldflags" >&5
$as_echo_n "checking for libhal ldflags... " >&6; }
# Check whether --with-hal-libs was given.
if test "${with_hal_libs+set}" = set; then :
withval=$with_hal_libs;
case "${withval}" in
yes|no)
as_fn_error $? "invalid option --with(out)-hal-libs - see docs/configure.txt" "$LINENO" 5
;;
*)
LIBS="${withval}"
;;
esac
else
LIBS="`pkg-config --silence-errors --libs hal dbus-glib-1 2>/dev/null`"
if test "$?" != "0"; then
LIBS="-lhal -ldbus-1 -lpthread"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${LIBS}" >&5
$as_echo "${LIBS}" >&6; }
for ac_header in libhal.h
do :
ac_fn_c_check_header_compile "$LINENO" "libhal.h" "ac_cv_header_libhal_h" "$ac_includes_default
"
if test "x$ac_cv_header_libhal_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBHAL_H 1
_ACEOF
nut_have_libhal=yes
else
nut_have_libhal=no
fi
done
for ac_header in glib.h dbus/dbus-glib.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
"
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
else
nut_have_libhal=no
fi
done
for ac_func in libhal_device_new_changeset
do :
ac_fn_c_check_func "$LINENO" "libhal_device_new_changeset" "ac_cv_func_libhal_device_new_changeset"
if test "x$ac_cv_func_libhal_device_new_changeset" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBHAL_DEVICE_NEW_CHANGESET 1
_ACEOF
else
nut_have_libhal=no
fi
done
if test "${nut_have_libhal}" = "yes"; then
for ac_func in g_timeout_add_seconds
do :
ac_fn_c_check_func "$LINENO" "g_timeout_add_seconds" "ac_cv_func_g_timeout_add_seconds"
if test "x$ac_cv_func_g_timeout_add_seconds" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_G_TIMEOUT_ADD_SECONDS 1
_ACEOF
fi
done
LIBHAL_CFLAGS="${CFLAGS}"
LIBHAL_LIBS="${LIBS}"
fi
CFLAGS="${CFLAGS_ORIG}"
LIBS="${LIBS_ORIG}"
fi
if test -z "${nut_have_config_libhal_seen}" -a "${nut_have_libhal}" = "yes"; then
nut_have_config_libhal_seen=yes
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal user" >&5
$as_echo_n "checking for libhal user... " >&6; }
# Check whether --with-hal-user was given.
if test "${with_hal_user+set}" = set; then :
withval=$with_hal_user;
case "${withval}" in
yes|no)
as_fn_error $? "invalid option --with(out)-hal-user - see docs/configure.txt" "$LINENO" 5
;;
*)
HAL_USER="${withval}"
;;
esac
else
HAL_USER="`pkg-config --silence-errors --variable=haluser hal 2>/dev/null`"
if test "$?" != "0" -o -z "${HAL_USER}"; then
HAL_USER="haldaemon"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${HAL_USER}" >&5
$as_echo "${HAL_USER}" >&6; }
cat >>confdefs.h <<_ACEOF
#define HAL_USER "${HAL_USER}"
_ACEOF
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal device match key" >&5
$as_echo_n "checking for libhal device match key... " >&6; }
# Check whether --with-hal-device-match-key was given.
if test "${with_hal_device_match_key+set}" = set; then :
withval=$with_hal_device_match_key;
case "${withval}" in
yes|no)
as_fn_error $? "invalid option --with(out)-hal-device-match-key - see docs/configure.txt" "$LINENO" 5
;;
*)
HAL_DEVICE_MATCH_KEY="${withval}"
;;
esac
else
if pkg-config --silence-errors --atleast-version=0.5.11 hal 2>/dev/null; then
HAL_DEVICE_MATCH_KEY="info.bus"
else
HAL_DEVICE_MATCH_KEY="info.subsystem"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${HAL_DEVICE_MATCH_KEY}" >&5
$as_echo "${HAL_DEVICE_MATCH_KEY}" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal Callouts path" >&5
$as_echo_n "checking for libhal Callouts path... " >&6; }
# Check whether --with-hal-callouts-path was given.
if test "${with_hal_callouts_path+set}" = set; then :
withval=$with_hal_callouts_path;
case "${withval}" in
yes|no)
as_fn_error $? "invalid option --with(out)-hal-callouts-path - see docs/configure.txt" "$LINENO" 5
;;
*)
HAL_CALLOUTS_PATH="${withval}"
;;
esac
else
HAL_CALLOUTS_PATH="`pkg-config --silence-errors --variable=libexecdir hal 2>/dev/null`"
if test "$?" != "0" -o -z "${HAL_CALLOUTS_PATH}"; then
HAL_CALLOUTS_PATH="${libdir}/hal"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${HAL_CALLOUTS_PATH}" >&5
$as_echo "${HAL_CALLOUTS_PATH}" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libhal Device Information path" >&5
$as_echo_n "checking for libhal Device Information path... " >&6; }
# Check whether --with-hal-fdi-path was given.
if test "${with_hal_fdi_path+set}" = set; then :
withval=$with_hal_fdi_path;
case "${withval}" in
yes|no)
as_fn_error $? "invalid option --with(out)-hal-fdi-path - see docs/configure.txt" "$LINENO" 5
;;
*)
HAL_FDI_PATH="${withval}"
;;
esac
else
HAL_FDI_PATH="`pkg-config --silence-errors --variable=hal_fdidir hal 2>/dev/null`"
if test "$?" != "0" -o -z "${HAL_FDI_PATH}"; then
HAL_FDI_PATH="${datarootdir}/hal/fdi/information/20thirdparty"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${HAL_FDI_PATH}" >&5
$as_echo "${HAL_FDI_PATH}" >&6; }
fi
# Check whether --with-snmp was given.
if test "${with_snmp+set}" = set; then :
withval=$with_snmp; nut_with_snmp="${withval}"
@ -11363,62 +11080,6 @@ _ACEOF
if test "${nut_with_hal}" = "yes" -a "${nut_have_libhal}" != "yes"; then
as_fn_error $? "\"libhal not found, required for HAL support\"" "$LINENO" 5
fi
if test "${nut_with_hal}" = "yes" -a "${nut_have_libusb}" != "yes"; then
as_fn_error $? "\"libusb not found, required for HAL support\"" "$LINENO" 5
fi
if test "${nut_with_hal}" != "no"; then
if test "${nut_have_libhal}" = "yes" -a "${nut_have_libusb}" = "yes"; then
nut_with_hal="yes"
else
nut_with_hal="no"
fi
fi
if test "${nut_with_hal}" = "yes"; then
WITH_HAL_TRUE=
WITH_HAL_FALSE='#'
else
WITH_HAL_TRUE='#'
WITH_HAL_FALSE=
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable HAL support" >&5
$as_echo_n "checking whether to enable HAL support... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${nut_with_hal} " >&5
$as_echo "${nut_with_hal} " >&6; }
if test -z "${nut_report_feature_flag}"; then
nut_report_feature_flag="1"
ac_clean_files="${ac_clean_files} conf_nut_report_feature"
echo > conf_nut_report_feature
echo "Configuration summary:" >> conf_nut_report_feature
echo "======================" >> conf_nut_report_feature
fi
echo "enable HAL support: ${nut_with_hal} " >> conf_nut_report_feature
if test "${nut_with_hal}" = "yes"; then
WITH_HAL_TRUE=
WITH_HAL_FALSE='#'
else
WITH_HAL_TRUE='#'
WITH_HAL_FALSE=
fi
if test "${nut_with_hal}" = "yes"; then
cat >>confdefs.h <<_ACEOF
#define WITH_HAL 1
_ACEOF
fi
@ -11772,8 +11433,8 @@ no)
;;
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if asciidoc version can build website (minimum required 8.6.3)" >&5
$as_echo_n "checking if asciidoc version can build website (minimum required 8.6.3)... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if asciidoc version can build manpages (minimum required 8.6.3)" >&5
$as_echo_n "checking if asciidoc version can build manpages (minimum required 8.6.3)... " >&6; }
@ -11819,8 +11480,8 @@ $as_echo "no" >&6; }
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if a2x version can build website (minimum required 8.6.3)" >&5
$as_echo_n "checking if a2x version can build website (minimum required 8.6.3)... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if a2x version can build manpages (minimum required 8.6.3)" >&5
$as_echo_n "checking if a2x version can build manpages (minimum required 8.6.3)... " >&6; }
@ -22969,6 +22630,50 @@ else
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to install FreeBSD devd.conf file" >&5
$as_echo_n "checking whether to install FreeBSD devd.conf file... " >&6; }
# Check whether --with-devd-dir was given.
if test "${with_devd_dir+set}" = set; then :
withval=$with_devd_dir;
case "${withval}" in
yes)
if test -z "${devddir}"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
as_fn_error $? "\"devd directory requested but not found\"" "$LINENO" 5
fi
;;
auto)
;;
no)
devddir=""
;;
*)
devddir="${withval}"
;;
esac
fi
if test -n "${devddir}"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using ${devddir}" >&5
$as_echo "using ${devddir}" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
if test -n "${devddir}"; then
WITH_DEVD_TRUE=
WITH_DEVD_FALSE='#'
else
WITH_DEVD_TRUE='#'
WITH_DEVD_FALSE=
fi
for ac_prog in asciidoc
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
@ -23215,12 +22920,7 @@ _ACEOF
ac_config_files="$ac_config_files clients/Makefile common/Makefile conf/Makefile conf/upsmon.conf.sample conf/upssched.conf.sample data/html/header.html data/html/Makefile data/Makefile data/driver.list docs/Makefile docs/man/Makefile docs/website/Makefile drivers/Makefile include/Makefile lib/libupsclient-config lib/libupsclient.pc lib/libnutclient.pc lib/libnutscan.pc lib/Makefile scripts/augeas/Makefile scripts/augeas/nutnutconf.aug scripts/augeas/nutupsconf.aug scripts/augeas/nutupsdconf.aug scripts/augeas/nutupsdusers.aug scripts/augeas/nutupsmonconf.aug scripts/augeas/nutupsschedconf.aug scripts/augeas/nuthostsconf.aug scripts/augeas/nutupssetconf.aug scripts/avahi/nut.service scripts/hal/Makefile scripts/hal/ups-nut-device.fdi scripts/hotplug/Makefile scripts/hotplug/libhidups scripts/HP-UX/nut.psf scripts/HP-UX/postinstall scripts/python/Makefile scripts/systemd/Makefile scripts/systemd/nut-driver.service scripts/systemd/nut-monitor.service scripts/systemd/nut-server.service scripts/systemd/nutshutdown scripts/Solaris/Makefile scripts/Solaris/pkginfo scripts/Solaris/postinstall scripts/Solaris/preremove scripts/Solaris/nut scripts/udev/Makefile scripts/udev/nut-ipmipsu.rules scripts/udev/nut-usbups.rules scripts/ufw/nut.ufw.profile scripts/Makefile server/Makefile tools/Makefile tools/nut-scanner/Makefile tests/Makefile Makefile"
ac_config_files="$ac_config_files clients/Makefile common/Makefile conf/Makefile conf/upsmon.conf.sample conf/upssched.conf.sample data/html/header.html data/html/Makefile data/Makefile data/driver.list docs/Makefile docs/man/Makefile drivers/Makefile include/Makefile lib/libupsclient-config lib/libupsclient.pc lib/libnutclient.pc lib/libnutscan.pc lib/Makefile scripts/augeas/Makefile scripts/augeas/nutnutconf.aug scripts/augeas/nutupsconf.aug scripts/augeas/nutupsdconf.aug scripts/augeas/nutupsdusers.aug scripts/augeas/nutupsmonconf.aug scripts/augeas/nutupsschedconf.aug scripts/augeas/nuthostsconf.aug scripts/augeas/nutupssetconf.aug scripts/avahi/nut.service scripts/devd/Makefile scripts/devd/nut-usb.conf scripts/hotplug/Makefile scripts/hotplug/libhidups scripts/HP-UX/nut.psf scripts/HP-UX/postinstall scripts/python/Makefile scripts/systemd/Makefile scripts/systemd/nut-driver.service scripts/systemd/nut-monitor.service scripts/systemd/nut-server.service scripts/systemd/nutshutdown scripts/Solaris/Makefile scripts/Solaris/pkginfo scripts/Solaris/postinstall scripts/Solaris/preremove scripts/Solaris/nut scripts/udev/Makefile scripts/udev/nut-ipmipsu.rules scripts/udev/nut-usbups.rules scripts/ufw/nut.ufw.profile scripts/Makefile server/Makefile tools/Makefile tools/nut-scanner/Makefile tests/Makefile Makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
@ -23424,14 +23124,6 @@ if test -z "${WITH_CGI_TRUE}" && test -z "${WITH_CGI_FALSE}"; then
as_fn_error $? "conditional \"WITH_CGI\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${WITH_HAL_TRUE}" && test -z "${WITH_HAL_FALSE}"; then
as_fn_error $? "conditional \"WITH_HAL\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${WITH_HAL_TRUE}" && test -z "${WITH_HAL_FALSE}"; then
as_fn_error $? "conditional \"WITH_HAL\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${WITH_ASCIIDOC_TRUE}" && test -z "${WITH_ASCIIDOC_FALSE}"; then
as_fn_error $? "conditional \"WITH_ASCIIDOC\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
@ -23468,6 +23160,10 @@ if test -z "${WITH_UDEV_TRUE}" && test -z "${WITH_UDEV_FALSE}"; then
as_fn_error $? "conditional \"WITH_UDEV\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${WITH_DEVD_TRUE}" && test -z "${WITH_DEVD_FALSE}"; then
as_fn_error $? "conditional \"WITH_DEVD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${MANUALUPDATE_TRUE}" && test -z "${MANUALUPDATE_FALSE}"; then
as_fn_error $? "conditional \"MANUALUPDATE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
@ -23873,7 +23569,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by nut $as_me 2.7.1, which was
This file was extended by nut $as_me 2.7.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -23939,7 +23635,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
nut config.status 2.7.1
nut config.status 2.7.2
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
@ -24457,7 +24153,6 @@ do
"data/driver.list") CONFIG_FILES="$CONFIG_FILES data/driver.list" ;;
"docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
"docs/man/Makefile") CONFIG_FILES="$CONFIG_FILES docs/man/Makefile" ;;
"docs/website/Makefile") CONFIG_FILES="$CONFIG_FILES docs/website/Makefile" ;;
"drivers/Makefile") CONFIG_FILES="$CONFIG_FILES drivers/Makefile" ;;
"include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
"lib/libupsclient-config") CONFIG_FILES="$CONFIG_FILES lib/libupsclient-config" ;;
@ -24475,8 +24170,8 @@ do
"scripts/augeas/nuthostsconf.aug") CONFIG_FILES="$CONFIG_FILES scripts/augeas/nuthostsconf.aug" ;;
"scripts/augeas/nutupssetconf.aug") CONFIG_FILES="$CONFIG_FILES scripts/augeas/nutupssetconf.aug" ;;
"scripts/avahi/nut.service") CONFIG_FILES="$CONFIG_FILES scripts/avahi/nut.service" ;;
"scripts/hal/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/hal/Makefile" ;;
"scripts/hal/ups-nut-device.fdi") CONFIG_FILES="$CONFIG_FILES scripts/hal/ups-nut-device.fdi" ;;
"scripts/devd/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/devd/Makefile" ;;
"scripts/devd/nut-usb.conf") CONFIG_FILES="$CONFIG_FILES scripts/devd/nut-usb.conf" ;;
"scripts/hotplug/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/hotplug/Makefile" ;;
"scripts/hotplug/libhidups") CONFIG_FILES="$CONFIG_FILES scripts/hotplug/libhidups" ;;
"scripts/HP-UX/nut.psf") CONFIG_FILES="$CONFIG_FILES scripts/HP-UX/nut.psf" ;;