blob: 59d24229e1f8d5a49b96a203c0f96d1939e9fbd8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
dnl
dnl $Id$
dnl
PHP_ARG_ENABLE(dio, whether to enable direct I/O support,
[ --enable-dio Enable direct I/O support])
if test "$PHP_DIO" != "no"; then
PHP_NEW_EXTENSION(dio, dio.c, $ext_shared)
fi
|