|
Lines 2362-2372
if test $? -eq 0 ; then
|
Link Here
|
|---|
|
*) | *) |
AC_CHECK_HEADER(sensors/sensors.h,, | AC_CHECK_HEADER(sensors/sensors.h,, |
[AC_MSG_ERROR([asked to use lm_sensors but I couldn't find sensors/sensors.h])]) | [AC_MSG_ERROR([asked to use lm_sensors but I couldn't find sensors/sensors.h])]) |
AC_CHECK_LIB(sensors, sensors_get_detected_chips, LIBS="${LIBS} -lsensors", |
AC_CHECK_LIB(sensors, sensors_get_detected_chips, SENSORLIBS="-lsensors", |
[AC_MSG_ERROR([asked to use lm_sensors but I couldn't find -lsensors])]) | [AC_MSG_ERROR([asked to use lm_sensors but I couldn't find -lsensors])]) |
;; | ;; |
esac | esac |
fi | fi |
|
AC_SUBST(SENSORLIBS) |
| |
# | # |
# Install the various perl modules | # Install the various perl modules |
|
Lines 2691-2696
if test "x$useopenssl" != "xno" ; then
|
Link Here
|
|---|
|
encrmodes="[disabled]" | encrmodes="[disabled]" |
fi | fi |
AC_DEFINE(USE_OPENSSL) | AC_DEFINE(USE_OPENSSL) |
|
LIBCRYPTO="-lcrypto" |
AC_MSG_RESULT(OpenSSL Support) | AC_MSG_RESULT(OpenSSL Support) |
elif test "x$usepkcs" != "xno" ; then | elif test "x$usepkcs" != "xno" ; then |
authmodes="MD5 SHA1" | authmodes="MD5 SHA1" |
|
|
if test "x$enable_md5" = "xno"; then | if test "x$enable_md5" = "xno"; then |
authmodes=`echo $authmodes | sed 's/MD5 *//;'` | authmodes=`echo $authmodes | sed 's/MD5 *//;'` |
fi | fi |
|
AC_SUBST(LIBCRYPTO) |
| |
AC_MSG_CACHE_ADD(Authentication support: $authmodes) | AC_MSG_CACHE_ADD(Authentication support: $authmodes) |
AC_MSG_CACHE_ADD(Encryption support: $encrmodes) | AC_MSG_CACHE_ADD(Encryption support: $encrmodes) |