You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
376 B

  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