1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(ipmiutil,3.2.1)
AC_CONFIG_SRCDIR(util/ipmiutil.c)
echo "ipmiutil version ${PACKAGE_VERSION}"
AC_CONFIG_HEADERS(config.h)
AC_PREFIX_DEFAULT(/usr)
AM_INIT_AUTOMAKE()
AC_PREFIX_DEFAULT(/usr)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_CHECK_PROG([SED], [sed], [sed])
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h syslog.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_OFF_T
AC_HEADER_TIME
AC_STRUCT_TM
AC_CHECK_TYPES(wchar_t)
dnl Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MMAP
AC_FUNC_STRFTIME
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(select socket strcspn strdup strspn strtoul memcpy)
AM_PROG_LIBTOOL
AC_CONST
AC_TRY_COMPILE([#include <sys/types.h>
#include <sys/socket.h>],
[socklen_t len = 42; return 0;],
ac_cv_type_socklen_t=yes,
ac_cv_type_socklen_t=no)
if test $ac_cv_type_socklen_t != yes; then
AC_DEFINE(socklen_t, int, [if socklen_t is not defined, provide something useful])
else
AC_DEFINE(HAVE_SOCKLEN_T, 1, [if socklen_t is defined, make note of it])
fi
tmpspec=/tmp/iuspec.tmp$$
archm=`uname -m`
archp=`uname -p 2>/dev/null`
sysname=`uname -s`
LIB_DIR="/usr/lib"
isredhat=0
init_scripts="scripts/ipmi_port.sh scripts/ipmiutil_evt scripts/ipmiutil_asy scripts/ipmiutil_wdt"
projdir=`pwd`
SUBDIR_S="scripts lib util"
os=Linux
# ltmain.sh, config.sub, et al should have been created, but check to be sure.
beforeprog="./beforeconf.sh"
progs="config.sub ltmain.sh"
for p in $progs
do
echo -e "checking for $p... \c"
if test -f "$p"; then
echo "yes"
else
echo "no"
echo "Run $beforeprog to configure the build environment."
exit 1
fi
done
#[ if test -n "$GCC"; then
# CFLAGS="$CFLAGS -Wall -D_REENTRANT"
# fi]
drv_landesk=0
dnl configure for LANDESK libipmiapi or not
AC_ARG_ENABLE([landesk],
[ --enable-landesk adds landesk library support [[default=no]]],
[if test "x$enableval" = "xyes"; then
drv_landesk=1
LANDESK_CFLAGS="-DLINK_LANDESK"
LANDESK_LDADD="-lipmiapi -L../lib"
AC_SUBST(LANDESK_CFLAGS)
AC_SUBST(LANDESK_LDADD)
fi]
)
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
drv_lanplus=""
LANPLUS_CFLAGS=""
LANPLUS_LDADD=""
LANPLUS_LIB=""
LANPLUS_CRYPTO=""
LANPLUS_SAM="no"
LD_SAMX=""
echo "lanplus disabled"
else
drv_lanplus="lanplus"
LANPLUS_CFLAGS="-DHAVE_LANPLUS"
# LANPLUS_CFLAGS="-DHAVE_LANPLUS -I${projdir}/lib/lanplus/inc"
# LANPLUS_LDADD="-L../lib -lintf_lanplus -L/usr/local/lib -lcrypto"
LANPLUS_LDADD="-L../lib -lipmi_lanplus -L/usr/local/lib -lcrypto"
LANPLUS_LIB="../lib/libipmi_lanplus.a"
LANPLUS_CRYPTO="-lcrypto"
LANPLUS_SAM="yes"
LD_SAMX="../lib/libipmi_lanplus.a -lcrypto"
echo "lanplus enabled"
fi
dnl Configure libipmiutil.a for lanplus or not
dnl Only SOL requires lanplus, so usually build libipmiutil.a without lanplus
#AC_ARG_ENABLE([liblanplus],
# [ --enable-liblanplus build libipmiutil.a with lanplus [[default=disabled]]],)
#if test "x$enable_liblanplus" = "xyes"; then
# LANPLUS_SAM="yes"
# LD_SAMX= "../lib/libipmi_lanplus.a -lcrypto"
#else
# LANPLUS_SAM="no"
# LD_SAMX=""
#fi
# strings /lib/libssl.so* |grep EVP_sha256
dnl configure for SHA256, build lanplus with SHA256 support, uses later openssl.
AC_ARG_ENABLE([sha256],
[ --enable-sha256 build with SHA256 support, requires later openssl.],
[if test "x$enableval" = "xyes"; then
LANPLUS_CFLAGS="$LANPLUS_CFLAGS -DHAVE_SHA256"
fi]
)
dnl configure for EKANALYZER, build with ekanalyzer function enabled
AC_ARG_ENABLE([ekanalyzer],
[ --enable-ekanalyzer build with ekanalyzer function enabled.],
[if test "x$enableval" = "xyes"; then
OS_CFLAGS="$OS_CFLAGS -DHAVE_EKANAL"
fi]
)
GPL_CFLAGS=""
CROSS_LFLAGS=""
CROSS_CFLAGS=""
LIBSENSORS=""
SAM2OBJ="isensor2.o ievents2.o"
SYSTEMD_DIR=/usr/share/ipmiutil
AC_ARG_ENABLE([useflags],
[ --enable-useflags include environment CFLAGS and LDFLAGS.],
[if test "x$enableval" = "xyes"; then
CROSS_CFLAGS="$CFLAGS"
CROSS_LFLAGS="$LDFLAGS"
fi]
)
dnl configure for standalone, with no lanplus or GPL libs
AC_ARG_ENABLE([standalone],
[ --enable-standalone build standalone, with no GPL or LanPlus libs.],
[if test "x$enableval" = "xyes"; then
GPL_CFLAGS=""
LANPLUS_CFLAGS=""
LANPLUS_LDADD=""
LANPLUS_LIB=""
LANPLUS_CRYPTO=""
LANPLUS_SAM="no"
LD_SAMX=""
CFLAGS="-O2"
SUBDIR_S="scripts util"
if test "x$cross_compiling" = "xyes"; then
# cross-compiling, so link with -static (e.g. Android ARM)
CROSS_LFLAGS="-static"
CROSS_CFLAGS="-DCROSS_COMPILE"
sed -i -e 's/^# ipmiutil: $(METASOURCE:.c=.o)/ipmiutil:\t$(METASOURCE:.c=.o)\n\t$(CC) $(CFLAGS) $(LDFLAGS) -o ipmiutil $(METASOURCE:.c=.o) $(LDADD)/' util/Makefile.am
fi
fi]
)
AC_ARG_ENABLE([doc],
[ --enable-doc build with documentation [[default=yes]]],
[enable_doc=$enableval],
[enable_doc=yes]
)
if test "x$enable_doc" = "xyes"; then
SUBDIR_S="$SUBDIR_S doc"
fi
dnl build libipmiutil with sensor modules
AC_ARG_ENABLE([libsensors],
[ --enable-libsensors build libipmiutil with sensor modules [[default=no]]],
[if test "x$enableval" = "xyes"; then
LIBSENSORS="isensor2.o ievents2.o"
SAM2OBJ=""
fi]
)
dnl configure for GPL build or not (GPL files: md2.h, ipmi_ioctl.h)
AC_ARG_ENABLE([gpl],
[ --enable-gpl build with some GPL code [[default=no]]],
[if test "x$enableval" = "xyes"; then
GPL_CFLAGS="-DALLOW_GPL"
fi]
)
dnl Does this Linux have systemd enabled? Otherwise use sysv init.
AC_ARG_ENABLE([systemd],
[ --enable-systemd enable systemd service type=notify support and %_unitdir [[default=disabled]]],)
if test "x$enable_systemd" = "xyes"; then
GPL_CFLAGS="$GPL_CFLAGS -DENABLE_SYSTEMD"
# if systemd enabled, install service scripts in unitdir
which rpm >/dev/null 2>&1
if test $? -eq 0 ; then
SYSTEMD_DIR=`rpm --eval "%{_unitdir}"`
else
SYSTEMD_DIR=/usr/share/ipmiutil
fi
else
# otherwise install the systemd service scripts in the data dir
SYSTEMD_DIR=/usr/share/ipmiutil
if test "x$sysname" != "xDarwin" ; then
if test "x$os" != "xhpux" ; then
# MacOS and HP-UX: 'which' command returns 0 always
which rpm >/dev/null 2>&1
if test $? -eq 0 ; then
datad=`rpm --eval "%{_datadir}"`
SYSTEMD_DIR=${datad}/ipmiutil
fi
fi
fi
fi
dnl start main logic
case "$archm" in
ia64)
IA64_CFLAGS="-D__IA64__"
LIB_DIR="/usr/lib64"
;;
ppc64)
IA64_CFLAGS="-DSTUB_IO"
LIB_DIR="/usr/lib64"
;;
x86_64)
IA64_CFLAGS=""
LIB_DIR="/usr/lib64"
;;
i386)
IA64_CFLAGS=""
;;
i586)
IA64_CFLAGS=""
;;
i686)
IA64_CFLAGS=""
;;
sun4u)
IA64_CFLAGS="-D__SPARC__"
;;
*)
IA64_CFLAGS="-DSTUB_IO"
;;
esac
dnl pkg-config support
pkgconfigdir='${libdir}/pkgconfig'
AC_MSG_CHECKING(whether to install pkg-config *.pc files)
AC_ARG_WITH(pkgconfig-dir,
AS_HELP_STRING([--with-pkgconfig-dir=PATH], [where to install pkg-config *.pc files (EPREFIX/lib/pkgconfig)]),
[
case "${withval}" in
yes|auto)
;;
no)
pkgconfigdir=""
;;
*)
pkgconfigdir="${withval}"
;;
esac
], [])
if test -n "${pkgconfigdir}"; then
AC_MSG_RESULT(using ${pkgconfigdir})
else
AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(WITH_PKG_CONFIG, test -n "${pkgconfigdir}")
dnl # libdir can be set with --libdir=/usr/lib (default=${exec_prefix}/lib)
echo $libdir |grep exec_prefix >/dev/null 2>&1
if test $? -ne 0; then
LIB_DIR="$libdir"
echo "libdir set to $libdir"
fi
PKG_DIR=/usr/src/packages
INS_LIB=""
SHR_LINK="libipmiutil.so.1"
init0=
if test "x$sysname" = "xSunOS"; then
echo "Detected Solaris"
os=solaris
# archp=`uname -p`
if test -d "/usr/sfw/lib"; then
sfwdir=/usr/sfw
else
sfwdir=/usr/local
fi
OS_CFLAGS="-DSOLARIS -I${sfwdir}/include"
OS_LFLAGS="-L${sfwdir}/lib -lxnet -lsocket -lnsl -lresolv"
OS_DRIVERS="ipmibmc.c ipmilipmi.c"
drivers="bmc lipmi"
INS_LIB="# "
SHR_LINK=""
else
if test "x$sysname" = "xLinux"; then
MD2_CFLAGS=""
OS_LFLAGS=""
OS_DRIVERS="imbapi.c ipmimv.c ipmild.c ipmidir.c"
if test $drv_landesk -eq 1; then
drivers="open imb landesk direct"
else
drivers="open imb direct"
fi
os=linux
tmpc=/tmp/tmp.c
tmpo=/tmp/tmp.o
echo $ECHO_N "checking compile sign warning flags ... $ECHO_C"
cfwarn="-Wno-pointer-sign -Wno-sign-conversion -Wlto-type-mismatch -Wmaybe-uninitialized -Wformat-overflow=1 -Wformat-truncation=1 "
# want "-Wno-unused-result", but unrecognized
echo "int main(void) { return(1); }" >$tmpc
$CC -o $tmpo -c $cfwarn $tmpc >/dev/null 2>&1
if test $? -ne 0 ; then
cfwarn=
echo "skip"
else
echo "ok, suppress excess warnings"
fi
rm -f $tmpc $tmpo >/dev/null 2>&1
echo $ECHO_N "checking compile gnu warning flags ... $ECHO_C"
cfgnu="-Wgnu-designator"
echo "int main(void) { return(1); }" >$tmpc
$CC -o $tmpo -c $cfgnu $tmpc >/dev/null 2>&1
if test $? -ne 0 ; then
cfgnu=
echo "skip"
else
echo "ok, suppress excess warnings"
fi
rm -f $tmpc $tmpo >/dev/null 2>&1
echo $ECHO_N "checking strict aliasing warning flags ... $ECHO_C"
cfalias="-fno-strict-aliasing"
echo "int main(void) { return(1); }" >$tmpc
$CC -o $tmpo -c $cfalias $tmpc >/dev/null 2>&1
if test $? -ne 0 ; then
cfalias=
echo "skip"
else
echo "ok, suppress aliasing warnings"
fi
rm -f $tmpc $tmpo >/dev/null 2>&1
echo $ECHO_N "checking compile fortify flags ... $ECHO_C"
cfhard="-fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
echo "#include <alloca.h>
int main(void) { alloca(100); return(1); }" >$tmpc
$CC -o $tmpo $cfhard $tmpc >/dev/null 2>&1
if test $? -ne 0 ; then
cfhard=
echo "skip"
else
echo "ok, add"
fi
rm -f $tmpc $tmpo >/dev/null 2>&1
if test -f "/etc/debian_version"; then
echo "Detected Debian Linux"
os=debian
PKG_DIR=..
INS_LIB="# "
# use dpkg-buildpackage instead of rpmbuild
else
which rpm >/dev/null 2>&1
if test $? -eq 0; then
pkgtop=`rpm --eval "%{_topdir}"`
PKG_DIR=$pkgtop
fi
fi
if test -f "/etc/redhat-release"; then
echo "Detected Red Hat Linux"
os=redhat
isredhat=1
fi
if test -f "/etc/SuSE-release"; then
echo "Detected SuSE Linux"
os=suse
sed -e 's/# POST_INSTALL/if [ ! -f \/etc\/snmp\/snmpd.conf ]; then\n if [ -f \/etc\/ucdsnmpd.conf ]; then\n mkdir -p \/etc\/snmp; ln -s \/etc\/ucdsnmpd.conf \/etc\/snmp\/snmpd.conf\n fi\nif [ -f \/etc\/snmpd.conf ]; then\nmkdir -p \/etc\/snmp; ln -s \/etc\/snmpd.conf \/etc\/snmp\/snmpd.conf\nfi\nfi\n#/' -e 's/make install DEST/make install-strip DEST/' doc/ipmiutil.spec >$tmpspec
cp -f $tmpspec doc/ipmiutil.spec
fi
if test -f "/etc/mvl-release"; then
echo "Detected MontaVista Linux"
os=montavista
init0=/etc/init.d
sed -e 's/openssl-devel/openssl-dev\n%ifarch x86_pentium3 x86_pentium4\nAutoReqProv: No\n%endif/' -e 's/%{_mandir}/\/usr\/share\/man/' -e 's/%{_initrddir}/\/etc\/init.d/' -e 's/%{_sysconfdir}/\/etc/' -e 's/# POST_INSTALL/newcrypto=%{_libdir}\/libcrypto.so.4\nif [ ! -f $newcrypto ]; then\n cp -f %{_libdir}\/libcrypto.so.0 $newcrypto\nfi\n#/' -e 's/make install DEST/make install-strip DEST/' doc/ipmiutil.spec >$tmpspec
cp -f $tmpspec doc/ipmiutil.spec
fi
if test -f "/etc/wrs-release" -o -d "$WIND_HOME"; then
echo "Detected WindRiver Linux"
os=windriver
echo "Be sure to set up the WR build environment first"
# WR requires extra steps in the spec file.
grep "%configure_target" doc/ipmiutil.spec >/dev/null 2>&1
if test $? -ne 0; then
# WR changes have not been patched in, so make them.
sed -e 's/Release: 1%{?dist}/Release: 1_WR/' -e 's/%build/%build\n%configure_target\n%define _config_cache config.cache\n/' -e 's/^make$/make CC="$CC" TARGET_CFLAGS="$CFLAGS" TARGET_LDADD="-L%{_host_cross_lib_dir}" LDFLAGS="$LDFLAGS" CXX="$CXX" CXXFLAGS="$CXXFLAGS" LD="$LD" AS="$AS" AR="$AR" CPP="$CPP" NM="$NM" OBJCOPY="$OPBJCOPY" OBJDUMP="$OPBJDUMP" RANLIB="$RANLIB" STRIP="$STRIP"/' -e 's/%install/%install\n%configure_target\n/' doc/ipmiutil.spec >$tmpspec
cp -f $tmpspec doc/ipmiutil.spec
fi
# WRL libcrypto does not have MD2
MD2_CFLAGS="-DSKIP_MD2"
init0=/etc/rc.d/init.d
fi
# if test $isredhat -eq 0 ; then
# set default start/stop for init scripts
# sed -i 's/# Default-Start:/# Default-Start: 3 4 5/' $init_scripts
# sed -i 's/# Default-Stop:/# Default-Stop: 0 1 2 6/' $init_scripts
# fi
# The openssl rpm might not be installed
sslver=""
which rpm >/dev/null 2>&1
sslnew=0
if test $? -eq 0 ; then
sslver=`rpm -q openssl-devel |cut -f3 -d'-' |cut -f1-2 -d'.'`
fi
if test "$sslver" = ""; then
sslver=`openssl version |awk '{ print $2 }'|cut -f1-2 -d'.'`
fi
sslrel=`echo $sslver |cut -f1 -d. `
if test "$sslver" = "1.1"; then
echo "Detected openssl-$sslver"
MD2_CFLAGS="-DSKIP_MD2 -DSSL11"
sslnew=1
fi
if test "$sslrel" = "3"; then
echo "Detected openssl-$sslver"
MD2_CFLAGS="-DSKIP_MD2 -DSSL11"
sslnew=1
fi
if test $sslnew -eq 0 ; then
echo "Detected openssl-$sslver"
if test -f "$LIB_DIR/libcrypto.so"; then
strings $LIB_DIR/libcrypto.so | grep EVP_md2 >/dev/null 2>&1
if test $? -ne 0; then
echo "No MD2 detected in openssl libcrypto.so"
MD2_CFLAGS="-DSKIP_MD2"
fi
else
echo "No openssl $LIB_DIR/libcrypto.so detected"
MD2_CFLAGS="-DSKIP_MD2"
fi
fi
OS_CFLAGS="-DLINUX $MD2_CFLAGS -fPIC $cfwarn $cfgnu $cfalias $cfhard"
else
macos=1 # =1 means not mac
# usually "x$sysname" = "xFreeBSD", but allow NetBSD
# echo $sysname | grep 'BSD' >/dev/null 2>&1
echo $sysname | grep -q BSD
bsd=$?
if test "x$sysname" = "xDarwin" ; then
if test "$archp" = "powerpc" ; then
macos=0
else
# else treat Darwin like BSD
bsd=0
fi
fi
uname -a | grep -i HP-UX >/dev/null 2>&1
hpux=$?
if test $hpux -eq 0; then
echo "Detected HP-UX"
os=hpux
MD2_CFLAGS="-DSKIP_MD2"
OS_CFLAGS="-DHPUX $MD2_CFLAGS"
OS_LFLAGS=""
OS_DRIVERS="imbapi.c ipmimv.c ipmidir.c"
drivers="imb open direct"
SHR_LINK=""
else
if test $bsd -eq 0; then
# FreeBSD uname -K shows 903000 for 9.3
os=bsd
osver=`uname -K |cut -c1`
echo "Detected BSD $osver"
if [ $osver -eq 7 ]; then
OS_CFLAGS="-DBSD7 -DBSD -fPIC"
else
OS_CFLAGS="-DBSD -fPIC"
fi
OS_LFLAGS=""
OS_DRIVERS="ipmimv.c ipmidir.c"
drivers="open direct"
elif test $macos -eq 0; then
echo "Detected MacOSX"
os=macos
MD2_CFLAGS="-DSKIP_MD2"
OS_CFLAGS="-DMACOS $MD2_CFLAGS -fPIC"
OS_LFLAGS=""
OS_DRIVERS="ipmimv.c ipmidir.c"
drivers="open direct"
SHR_LINK=""
# optionally check for AppleBMC.kext here?
else
# not Solaris, Linux, BSD, or HP-UX = error
echo "OS $sysname not yet supported"
exit 1
fi
fi
fi
fi
dnl determine where the init.d directory is
if test "x$init0" = "x" ; then
if test "x$os" != "xmacos" ; then
if test "x$os" != "xhpux" ; then
which rpmbuild >/dev/null 2>&1
if test $? -eq 0 ; then
init1=`rpmbuild --showrc |grep " _initrddir" | cut -d'}' -f2`
if test "x$init1" != "x" ; then
init0=/etc/${init1}
fi
fi
fi
fi
fi
if test "x$init0" = "x" ; then
if test -d ${etcdir}/rc.d/init.d ; then
init0=/etc/rc.d/init.d;
else
init0=/etc/init.d;
fi
fi
INIT_DIR=${init0}
AC_SUBST(IA64_CFLAGS)
AC_SUBST(LANPLUS_CFLAGS)
AC_SUBST(LANPLUS_LDADD)
AC_SUBST(LANPLUS_LIB)
AC_SUBST(LANPLUS_CRYPTO)
AC_SUBST(LANPLUS_SAM)
AC_SUBST(LIBSENSORS)
AC_SUBST(SAM2OBJ)
AC_SUBST(LD_SAMX)
AC_SUBST(GPL_CFLAGS)
AC_SUBST(OS_CFLAGS)
AC_SUBST(OS_LFLAGS)
AC_SUBST(OS_DRIVERS)
AC_SUBST(PKG_DIR)
AC_SUBST(INIT_DIR)
AC_SUBST(LIB_DIR)
AC_SUBST(INS_LIB)
AC_SUBST(SUBDIR_S)
AC_SUBST(CROSS_CFLAGS)
AC_SUBST(CROSS_LFLAGS)
AC_SUBST(SYSTEMD_DIR)
AC_SUBST(SHR_LINK)
AC_SUBST(pkgconfigdir)
AC_OUTPUT(Makefile util/Makefile lib/Makefile lib/libipmiutil.pc lib/lanplus/Makefile doc/Makefile scripts/Makefile)
if test "x$sysname" = "xSunOS"; then
sed -e 's/^LDFLAGS = /LDFLAGS = -L\/usr\/sfw\/lib -lxnet -lsocket -lnsl /' -e 's/-DLINUX/-DSOLARIS -I\/usr\/sfw\/include/' util/Makefile >/tmp/make
# -e 's/ipmidir.c/ipmibmc.c/'
cp -f /tmp/make util/Makefile
fi
if test "x$os" = "xhpux" ; then
for mk in Makefile util/Makefile lib/Makefile lib/libipmiutil.pc lib/lanplus/Makefile doc/Makefile scripts/Makefile
do
sed -e 's/^.NOEXPORT:/#.NOEXPORT:/' $mk >/tmp/make
cp -f /tmp/make $mk
done
fi
AC_MSG_RESULT([])
AC_MSG_RESULT([ipmiutil $VERSION])
AC_MSG_RESULT([ OS : $os])
AC_MSG_RESULT([ ARCH : $archm])
AC_MSG_RESULT([ DRIVERS : $drivers lan $drv_lanplus])
AC_MSG_RESULT([])
|