]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/ofed/libibcm/configure.in
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / ofed / libibcm / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_PREREQ(2.57)
4 AC_INIT(libibcm, 1.0.5, general@lists@openfabrics.org)
5 AC_CONFIG_SRCDIR([src/cm.c])
6 AC_CONFIG_AUX_DIR(config)
7 AM_CONFIG_HEADER(config.h)
8 AM_INIT_AUTOMAKE(libibcm, 1.0.5)
9
10 AM_PROG_LIBTOOL
11
12 AC_ARG_WITH([valgrind],
13     AC_HELP_STRING([--with-valgrind],
14                    [Enable valgrind annotations - default NO]))
15
16 if test "$with_valgrind" != "" && test "$with_valgrind" != "no"; then
17         AC_DEFINE([INCLUDE_VALGRIND], 1,
18                   [Define to 1 to enable valgrind annotations])
19         if test -d $with_valgrind; then
20                 CPPFLAGS="$CPPLFAGS -I$with_valgrind/include"
21         fi
22 fi
23
24 AC_ARG_ENABLE(libcheck, [  --disable-libcheck      do not test for presence of ib libraries],
25 [       if test "$enableval" = "no"; then
26                 disable_libcheck=yes
27         fi
28 ])
29
30 dnl Checks for programs
31 AC_PROG_CC
32
33 dnl Checks for typedefs, structures, and compiler characteristics.
34 AC_C_CONST
35 AC_CHECK_SIZEOF(long)
36
37 dnl Checks for libraries
38 if test "$disable_libcheck" != "yes"; then
39 AC_CHECK_LIB(ibverbs, ibv_get_device_list, [],
40     AC_MSG_ERROR([ibv_get_device_list() not found.  libibcm requires libibverbs.]))
41 #Need librdmacm for cmpost test program.
42 #AC_CHECK_LIB(rdmacm, rdma_create_id, [],
43 #    AC_MSG_ERROR([rdma_create_id() not found.  ucmpost requires librdmacm.]))
44 fi
45
46 dnl Checks for header files.
47 AC_HEADER_STDC
48 if test "$disable_libcheck" != "yes"; then
49 AC_CHECK_HEADER(infiniband/verbs.h, [],
50     AC_MSG_ERROR([<infiniband/verbs.h> not found.  Is libibverbs installed?]))
51 AC_CHECK_HEADER(infiniband/marshall.h, [],
52     AC_MSG_ERROR([<infiniband/marshall.h> not found.  Is libibverbs installed?]))
53
54 if test "$with_valgrind" != "" && test "$with_valgrind" != "no"; then
55 AC_CHECK_HEADER(valgrind/memcheck.h, [],
56     AC_MSG_ERROR([valgrind requested but <valgrind/memcheck.h> not found.]))
57 fi
58
59 fi
60
61 AC_CACHE_CHECK(whether ld accepts --version-script, ac_cv_version_script,
62     if test -n "`$LD --help < /dev/null 2>/dev/null | grep version-script`"; then
63         ac_cv_version_script=yes
64     else
65         ac_cv_version_script=no
66     fi)
67
68 AM_CONDITIONAL(HAVE_LD_VERSION_SCRIPT, test "$ac_cv_version_script" = "yes")
69
70 AC_CONFIG_FILES([Makefile libibcm.spec])
71 AC_OUTPUT