config.m4 376 B

1234567891011121314
  1. dnl $Id$
  2. PHP_ARG_ENABLE(sysvmsg,whether to enable System V IPC support,
  3. [ --enable-sysvmsg Enable sysvmsg support])
  4. if test "$PHP_SYSVMSG" != "no"; then
  5. AC_CHECK_HEADER([sys/msg.h],
  6. [],
  7. [AC_MSG_ERROR([Cannot enable System V IPC support, sys/msg.h is missing])
  8. ])
  9. AC_DEFINE(HAVE_SYSVMSG, 1, [ ])
  10. PHP_NEW_EXTENSION(sysvmsg, sysvmsg.c, $ext_shared)
  11. fi