Merge branch 'master' of https://github.com/Sp1l/nghttp2 into Sp1l-master
This commit is contained in:
commit
21f9b6d8bb
13
configure.ac
13
configure.ac
|
@ -268,9 +268,16 @@ if test "x${have_zlib}" = "xno"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# dl: openssl requires libdl when it is statically linked.
|
# dl: openssl requires libdl when it is statically linked.
|
||||||
save_LIBS=$LIBS
|
case "${host_os}" in
|
||||||
AC_SEARCH_LIBS([dlopen], [dl], [APPLDFLAGS="-ldl $APPLDFLAGS"], [], [])
|
*bsd*)
|
||||||
LIBS=$save_LIBS
|
# dlopen is in libc on *BSD
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
save_LIBS=$LIBS
|
||||||
|
AC_SEARCH_LIBS([dlopen], [dl], [APPLDFLAGS="-ldl $APPLDFLAGS"], [], [])
|
||||||
|
LIBS=$save_LIBS
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# cunit
|
# cunit
|
||||||
PKG_CHECK_MODULES([CUNIT], [cunit >= 2.1], [have_cunit=yes], [have_cunit=no])
|
PKG_CHECK_MODULES([CUNIT], [cunit >= 2.1], [have_cunit=yes], [have_cunit=no])
|
||||||
|
|
Loading…
Reference in New Issue