This repository has been archived on 2018-05-01. You can view files and clone it, but cannot push or open issues or pull requests.
ext-ioctl/config.m4

13 lines
431 B
Plaintext

PHP_ARG_ENABLE(ioctl, for ioctl support,
[ --enable-ioctl Enable ioctl support ])
PHP_ARG_ENABLE(ioctl-helper, for ioctl helper functions,
[ --enable-ioctl-helper Enable ioctl helper functions ], no, no)
if test "$PHP_IOCTL" != "no"; then
PHP_NEW_EXTENSION(ioctl, src/ioctl.c, $ext_shared)
if test "$PHP_IOCTL_HELPER" != "no"; then
AC_DEFINE(IOCTL_ENABLE_HELPER_FUNCTIONS, 1, [ ])
fi
fi