Source
13
13
# OPENIPMI_LDFLAGS="-lOpenIPMI" OPENIPMI_CFLAGS="-I/usr/myinclude" ./configure
14
14
#
15
15
# This macro is distributed in the hope that it will be useful,
16
16
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
18
​
19
19
AC_DEFUN([LIBOPENIPMI_CHECK_CONFIG],
20
20
[
21
21
AC_ARG_WITH(openipmi,[
22
22
If you want to check IPMI devices:
23
-
AC_HELP_STRING([--with-openipmi@<:@=DIR@:>@],[Include OPENIPMI support @<:@default=no@:>@. DIR is the OPENIPMI base install directory, default is to search through a number of common places for the OPENIPMI files.])],
23
+
AS_HELP_STRING([--with-openipmi@<:@=DIR@:>@],[Include OPENIPMI support @<:@default=no@:>@. DIR is the OPENIPMI base install directory, default is to search through a number of common places for the OPENIPMI files.])],
24
24
[ if test "$withval" = "no"; then
25
25
want_openipmi="no"
26
26
_libopenipmi_with="no"
27
27
elif test "$withval" = "yes"; then
28
28
want_openipmi="yes"
29
29
_libopenipmi_with="yes"
30
30
else
31
31
want_openipmi="yes"
32
32
_libopenipmi_with=$withval
33
33
fi