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
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT([ibutils], [1.2], [openib-general@openib.org])
dnl use local config dir for extras
AC_CONFIG_AUX_DIR(config)
dnl Auto make
AM_INIT_AUTOMAKE( [foreign ] )
dnl Defines the Language
AC_LANG_C
dnl Provides control over re-making of all auto files
dnl We also use it to define swig dependencies so end
dnl users do not see them.
AM_MAINTAINER_MODE
dnl Required for cases make defines a MAKE=make ??? Why
AC_PROG_MAKE_SET
dnl Define an input config option to control debug compile
AC_ARG_ENABLE(debug,
[ --enable-debug Turn on debugging],
[case "${enableval}" in
yes) debug=true ;;
no) debug=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
esac],[debug=false])
dnl For making dist we need not check any lib dependency
AC_ARG_ENABLE(libcheck,
[ --enable-libcheck Enable Dependency Checking],
[case "${enableval}" in
yes) libcheck=true ;;
no) libcheck=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-libcheck) ;;
esac],[libcheck=true])
dnl find OpenSM and umad
OPENIB_APP_OSM
dnl Configure the following subdirs
AC_CONFIG_SUBDIRS(ibis ibdm ibdiag)
AC_ARG_ENABLE(ibmgtsim,
[ --enable-ibmgtsim Build ibmgtsim],
[case "${enableval}" in
yes) ibmgtsim=true ;;
no) ibmgtsim=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-ibmgtsim) ;;
esac],[ibmgtsim=false])
AM_CONDITIONAL([BUILD_IBMGTSIM], [test "x$ibmgtsim" != xfalse])
dnl we need a non relative srcdir:
abs_srcdir=`cd ${0%*/*};pwd`
if test $ibmgtsim = true; then
dnl we need to pass down the local dir as the directory to take ibdm from
ac_configure_args=["$ac_configure_args --with-ibdm=$abs_srcdir/ibdm"]
AC_CONFIG_SUBDIRS(ibmgtsim)
fi
AC_CONFIG_FILES([ibutils.spec])
dnl Create the following Makefiles
AC_OUTPUT(Makefile)
|