1## Copyright (C) 1996-2021 The Squid Software Foundation and contributors
2##
3## Squid software is distributed under GPLv2+ license and includes
4## contributions from numerous individuals and organizations.
5## Please see the COPYING and CONTRIBUTORS files for details.
6##
7
8AC_CHECK_HEADERS(db.h,[
9  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <db.h>]],[[
10    DB_ENV *db_env = nullptr;
11    db_env_create(&db_env, 0);
12  ]])],[
13    BUILD_HELPER="session"
14  ],[])
15])
16