summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-10-07 16:28:32 -0400
committerNick Mathewson <nickm@torproject.org>2011-10-07 16:28:32 -0400
commite8ed4657764effb4f16fd5721c13f3384fdd8db1 (patch)
treeb6dd9d27b7919be9df15b2b63e6191533e92f4ef /configure.in
parented39621a9d97dc07063b6e9052b52a91b99d82d6 (diff)
parent296649fd2b0aa1d0c328ca8b494d746a75cbb28b (diff)
downloadtor-e8ed4657764effb4f16fd5721c13f3384fdd8db1.tar.gz
tor-e8ed4657764effb4f16fd5721c13f3384fdd8db1.zip
Merge remote-tracking branch 'public/bug2430'
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index b94c29b98c..d861093607 100644
--- a/configure.in
+++ b/configure.in
@@ -189,9 +189,9 @@ AC_C_FLEXIBLE_ARRAY_MEMBER
[tor_cv_c_flexarray=yes],
[tor_cv_c_flexarray=no])])
if test $tor_cv_flexarray = yes ; then
- AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [])
+ AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [], [Define to nothing if C supports flexible array members, and to 1 if it does not.])
else
- AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [1])
+ AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [1], [Define to nothing if C supports flexible array members, and to 1 if it does not.])
fi
])