diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-08-10 12:02:03 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-08-10 12:02:03 +0200 |
commit | 27df2893a39a9da083841e37c12fc24b2bdad80f (patch) | |
tree | 96f72afa6e9f48aaa63c13c6ef6f1a3944952bdc /configure.ac | |
parent | 5f532f12bf9a32e4fe135280c22a12de32c8ebd3 (diff) | |
parent | ccfc550b12b142c11dcf4d249d086925af0443c4 (diff) |
Update upstream source from tag 'upstream/3.1.4'
Update to upstream version '3.1.4'
with Debian dir 999313211f5a9267c5c009361307a0af488a2c92
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 139004e..41f5e55 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(ipmiutil,3.1.3) +AC_INIT(ipmiutil,3.1.4) AC_CONFIG_SRCDIR(util/ipmiutil.c) echo "ipmiutil version ${PACKAGE_VERSION}" AC_CONFIG_HEADERS(config.h) @@ -94,8 +94,8 @@ AC_ARG_ENABLE([landesk], dnl Configure ipmiutil for lanplus (libipmi_lanplus.a) or not (default yes) AC_ARG_ENABLE([lanplus], - [ --disable-lanplus disable lanplus support [[default=enabled]]],) -if test "x$enable_lanplus" = "xno"; then + [ --enable-lanplus enable lanplus support (default=yes)],[default=yes], +[if test "x$enableval" = "xno"; then drv_lanplus="" LANPLUS_CFLAGS="" LANPLUS_LDADD="" @@ -113,7 +113,7 @@ else LANPLUS_CRYPTO="-lcrypto" LANPLUS_SAM="yes" LD_SAMX="../lib/libipmi_lanplus.a -lcrypto" -fi +fi ]) dnl Configure libipmiutil.a for lanplus or not dnl Only SOL requires lanplus, so usually build libipmiutil.a without lanplus |