1[#] start of __file__
2
3AC_DEFUN([PAC_SUBCFG_PREREQ_]PAC_SUBCFG_AUTO_SUFFIX,[
4	PAC_SET_HEADER_LIB_PATH(hcoll)
5	PAC_PUSH_FLAG(LIBS)
6	PAC_CHECK_HEADER_LIB([hcoll/api/hcoll_api.h],[hcoll],[hcoll_init],[have_hcoll=yes],[have_hcoll=no])
7	if test "${with_hcoll}" = "no" ; then
8	   have_hcoll=no;
9	elif test "${have_hcoll}" = "yes" ; then
10	   PAC_APPEND_FLAG([-lhcoll],[WRAPPER_LIBS])
11	elif test -n "${with_hcoll}" -o -n "${with_hcoll_lib}" -o -n "${with_hcoll_include}" ; then
12	   AC_MSG_ERROR(['hcoll/api/hcoll_api.h or libhcoll library not found.'])
13	fi
14	PAC_POP_FLAG(LIBS)
15	AM_CONDITIONAL([BUILD_HCOLL],[test "$have_hcoll" = "yes"])
16])dnl end PREREQ
17
18AC_DEFUN([PAC_SUBCFG_BODY_]PAC_SUBCFG_AUTO_SUFFIX,[
19# nothing to do
20])dnl end _BODY
21
22[#] end of __file__
23