summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2002-09-19 20:14:58 +0000
committerIlia Alshanetsky <iliaa@php.net>2002-09-19 20:14:58 +0000
commitae5222ac23fb16e9423e062d2fe811e3f715e727 (patch)
treec6e3105ad6ab4bfa33247f766a6b1ad2dae3eb7b
parentcf07c698d13ea52d20abce2ee54d7c9a9f8ee382 (diff)
downloadphp-git-ae5222ac23fb16e9423e062d2fe811e3f715e727.tar.gz
Fixed bug #19504
Alligned 'Enable sysvmsg support' message.
-rw-r--r--ext/sysvmsg/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sysvmsg/config.m4 b/ext/sysvmsg/config.m4
index 51a667b01a..1bc2dba7d8 100644
--- a/ext/sysvmsg/config.m4
+++ b/ext/sysvmsg/config.m4
@@ -1,7 +1,7 @@
dnl $Id$
PHP_ARG_ENABLE(sysvmsg,whether to enable System V IPC support,
-[ --enable-sysvmsg Enable sysvmsg support])
+[ --enable-sysvmsg Enable sysvmsg support])
if test "$PHP_SYSVMSG" != "no"; then
AC_MSG_CHECKING([whether sys/msg.h defines struct msgbuf or mymsg])
@@ -11,7 +11,7 @@ if test "$PHP_SYSVMSG" != "no"; then
#include <sys/msg.h>],
[struct msgbuf *foo;
- foo = (struct msgbuf *) malloc(sizeof(struct msgbuf) +1);
+ foo = (struct msgbuf *) malloc(sizeof(struct msgbuf*) +1);
return 1;],
[AC_MSG_RESULT(msgbuf)],
[AC_TRY_COMPILE(
@@ -21,7 +21,7 @@ if test "$PHP_SYSVMSG" != "no"; then
],
[struct mymsg *foo;
- foo = (struct mymsg *) malloc(sizeof(struct mymsg) +1);
+ foo = (struct mymsg *) malloc(sizeof(struct mymsg*) +1);
return 1;
],
[AC_DEFINE(msgbuf, mymsg, [msgbuf is called mymsg])