dnl CF_FIND_SUB_INCDIR version: 1 updated: 2014/04/12 16:47:01
dnl ------------------
dnl Find an include-directory with the given leaf-name.  This is useful for
dnl example with FreeBSD ports, which use this convention to distinguish
dnl different versions of the same port.
AC_DEFUN([CF_FIND_SUB_INCDIR],[
	CF_SUBDIR_PATH(cf_search,$1,include)
	for cf_item in $cf_search
	do
		case $cf_item in #(vi
		*/$1)
			CF_ADD_INCDIR($cf_item)
			;;
		esac
	done
])dnl
