aboutsummaryrefslogtreecommitdiff
path: root/helper/m4/libcli.m4
blob: 7edaf3a5db6c41138b24374762656c98ed560959 (plain)
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
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2021 Nokia
#

##########################################################################
# Set optional libcli path
##########################################################################
AC_ARG_WITH([libcli-path],
    [AS_HELP_STRING([--with-libcli-path=DIR],
        [path to libcli libs and headers [default=system]])],
    [libcli_path_given=yes
        LIBCLI_CPPFLAGS="-I$withval/include"
        LIBCLI_LIBS="-L$withval/lib"
        LIBCLI_RPATH="-R$withval/lib"],
    [])

##########################################################################
# Save and set temporary compilation flags
##########################################################################
OLD_CPPFLAGS=$CPPFLAGS
OLD_LIBS=$LIBS
CPPFLAGS="$LIBCLI_CPPFLAGS $CPPFLAGS"
LIBS="$LIBCLI_LIBS $LIBS"

#########################################################################
# If libcli is available, enable CLI helper
#########################################################################
helper_cli=no
AC_CHECK_HEADER(libcli.h,
    [AC_CHECK_LIB(cli, cli_init, [helper_cli=yes], [], [-lcrypt])],
    [AS_IF([test "x$libcli_path_given" = "xyes"],
        [AC_MSG_ERROR([libcli not found at the specified path (--with-libcli-path)])])])

AS_IF([test "x$helper_cli" != "xno"],
    [AC_DEFINE_UNQUOTED([ODPH_CLI], [1], [Define to 1 to enable CLI helper])
        LIBCLI_LIBS="$LIBCLI_RPATH $LIBCLI_LIBS -lcli -lcrypt"],
    [LIBCLI_CPPFLAGS=""
        LIBCLI_LIBS=""])

##########################################################################
# Restore old saved variables
##########################################################################
LIBS=$OLD_LIBS
CPPFLAGS=$OLD_CPPFLAGS

AC_SUBST([LIBCLI_CPPFLAGS])
AC_SUBST([LIBCLI_LIBS])