summaryrefslogtreecommitdiffstats
path: root/third_party/heimdal/cf/dispatch.m4
blob: 76c5f47ee6fcf46b6eabf4c34499eee7e265b82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AC_DEFUN([rk_LIBDISPATCH],[

AC_CHECK_PROGS(GCD_MIG, mig, no)

if test "$GCD_MIG" != no; then
  AC_CHECK_HEADERS([dispatch/dispatch.h])
  AC_FIND_FUNC_NO_LIBS(dispatch_async_f, dispatch,
  [#ifdef HAVE_DISPATCH_DISPATCH_H
  #include <dispatch/dispatch.h>
  #endif],[0,0,0])

  if test "$ac_cv_func_dispatch_async_f" = yes -a "$GCD_MIG" != no; then
      AC_DEFINE([HAVE_GCD], 1, [Define if os support gcd.])
      libdispatch=yes
  else
      libdispatch=no
  fi

fi
AM_CONDITIONAL(have_gcd, test "$libdispatch" = yes -a "$GCD_MIG" != no)

])