• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1dnl
2dnl Select/poll stuff for CUPS.
3dnl
4dnl Copyright © 2021-2023 by OpenPrinting.
5dnl Copyright © 2007-2011 by Apple Inc.
6dnl Copyright © 2006 by Easy Software Products, all rights reserved.
7dnl
8dnl Licensed under Apache License v2.0.  See the file "LICENSE" for more
9dnl information.
10dnl
11
12AC_CHECK_FUNC([poll], [
13    AC_DEFINE([HAVE_POLL], [1], [Have poll function?])
14])
15AC_CHECK_FUNC([epoll_create], [
16    AC_DEFINE([HAVE_EPOLL], [1], [Have epoll function?])
17])
18AC_CHECK_FUNC([kqueue], [
19    AC_DEFINE([HAVE_KQUEUE], [1], [Have kqueue function?])
20])
21