[nginx] svn commit: r4564 - trunk/auto
mdounin at mdounin.ru
mdounin at mdounin.ru
Wed Mar 28 12:38:04 UTC 2012
Author: mdounin
Date: 2012-03-28 12:38:03 +0000 (Wed, 28 Mar 2012)
New Revision: 4564
URL: http://trac.nginx.org/nginx/changeset/4564/nginx
Log:
Configure: fixed msghdr.msg_control test on 64bit platforms.
Broken by r4560.
Modified:
trunk/auto/unix
Modified: trunk/auto/unix
===================================================================
--- trunk/auto/unix 2012-03-28 09:29:09 UTC (rev 4563)
+++ trunk/auto/unix 2012-03-28 12:38:03 UTC (rev 4564)
@@ -703,8 +703,8 @@
#include <stdio.h>"
ngx_feature_path=
ngx_feature_libs=
-ngx_feature_test="struct msghdr msg; msg.msg_control = NULL;
- printf(\"%d\", (int) msg.msg_control)"
+ngx_feature_test="struct msghdr msg;
+ printf(\"%d\", (int) sizeof(msg.msg_control))"
. auto/feature
More information about the nginx-devel
mailing list