summaryrefslogtreecommitdiffstats
path: root/m4/pdns_with_nghttp2.m4
blob: 8305b2b906737c33298e735981a18bde58b5bf7c (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
AC_DEFUN([PDNS_WITH_NGHTTP2], [
  AC_MSG_CHECKING([whether we will be linking in nghttp2])
  HAVE_NGHTTP2=0
  AC_ARG_WITH([nghttp2],
    AS_HELP_STRING([--with-nghttp2],[use nghttp2 @<:@default=auto@:>@]),
    [with_nghttp2=$withval],
    [with_nghttp2=auto],
  )
  AC_MSG_RESULT([$with_nghttp2])

  AS_IF([test "x$with_nghttp2" != "xno"], [
    AS_IF([test "x$with_nghttp2" = "xyes" -o "x$with_nghttp2" = "xauto"], [
      PKG_CHECK_MODULES([NGHTTP2], [libnghttp2], [
        [HAVE_NGHTTP2=1]
        AC_DEFINE([HAVE_NGHTTP2], [1], [Define to 1 if you have nghttp2])
      ], [ : ])
    ])
  ])
  AM_CONDITIONAL([HAVE_NGHTTP2], [test "x$NGHTTP2_LIBS" != "x"])
  AS_IF([test "x$with_nghttp2" = "xyes"], [
    AS_IF([test x"$NGHTTP2_LIBS" = "x"], [
      AC_MSG_ERROR([nghttp2 requested but libraries were not found])
    ])
  ])
])