irqbalance/configure.ac
Neil Horman c739059a61 Add configure.ac checks to ensure presence of libnuma and libm
irqbalance currently requries libnuma and libm be present. Augment the configure
script to ensure they are available

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
2011-10-10 08:54:54 -04:00

80 lines
2.3 KiB
Plaintext

dnl
define([AC_INIT_NOTICE],
[### Generated automatically using autoconf version] AC_ACVERSION [
### Copyright 2009 Steve Grubb <sgrubb@redhat.com>
###
### Permission is hereby granted, free of charge, to any person obtaining a
### copy of this software and associated documentation files (the "Software"),
### to deal in the Software without restriction, including without limitation
### the rights to use, copy, modify, merge, publish, distribute, sublicense,
### and/or sell copies of the Software, and to permit persons to whom the
### Software is furnished to do so, subject to the following conditions:
###
### The above copyright notice and this permission notice shall be included
### in all copies or substantial portions of the Software.
###
### THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
### IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
### FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
### THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
### OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
### ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
### OTHER DEALINGS IN THE SOFTWARE.
###
### For usage, run `./configure --help'
### For more detailed information on installation, read the file `INSTALL'.
###
### If configuration succeeds, status is in the file `config.status'.
### A log of configuration tests is in `config.log'.
])
AC_REVISION($Revision: 1.3 $)dnl
AC_INIT(irqbalance,0.56)
AC_PREREQ(2.12)dnl
AM_CONFIG_HEADER(config.h)
echo Configuring irqbalance $VERSION
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AM_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
echo .
echo Checking for programs
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_AWK
echo .
echo Checking for header files
AC_HEADER_STDC
AC_CHECK_HEADERS(linux/ethtool.h linux/sockios.h, [], [])
AC_CHECK_FUNCS(getopt_long)
AC_CHECK_LIB(numa, numa_run_on_node, [], [])
AC_CHECK_LIB(m, floor, [], [])
AC_C_CONST
AC_C_INLINE
AM_PROG_CC_C_O
PKG_CHECK_MODULES([GLIB], [glib-2.0])
LIBCAP_NG_PATH
AC_OUTPUT(Makefile)
echo .
echo "
irqbalance Version: $VERSION
Target: $target
Installation prefix: $prefix
Compiler: $CC
Compiler flags:
`echo $CFLAGS | fmt -w 50 | sed 's,^, ,'`
"