config.m4 391 B

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