summaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2005-11-28 05:50:52 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2005-11-28 05:50:52 +0000
commit5acb3a79aee197ab43496d4c7941718a83f429ef (patch)
tree0f3e5c17ac30772f68d8efd999f4c21981157226 /acinclude.m4
parent027a87ceedeefdf742a56a810ce0bf7f7fb67aca (diff)
downloadopenvpn-5acb3a79aee197ab43496d4c7941718a83f429ef.tar.gz
openvpn-5acb3a79aee197ab43496d4c7941718a83f429ef.tar.xz
openvpn-5acb3a79aee197ab43496d4c7941718a83f429ef.zip
svn merge -r 780:820 $SO/trunk/openvpn .
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@828 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 8ff8dad..f164bac 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -19,13 +19,13 @@ AC_DEFUN([AX_EMPTY_ARRAY], [
AC_MSG_RESULT([checking for C compiler empty array support])
AC_COMPILE_IFELSE(
[
- struct { int foo; int bar[0]; } mystruct;
+ struct { int foo; int bar[[0]]; } mystruct;
], [
AC_DEFINE_UNQUOTED(EMPTY_ARRAY_SIZE, 0, [Dimension to use for empty array declaration])
], [
AC_COMPILE_IFELSE(
[
- struct { int foo; int bar[]; } mystruct;
+ struct { int foo; int bar[[]]; } mystruct;
], [
AC_DEFINE_UNQUOTED(EMPTY_ARRAY_SIZE,, [Dimension to use for empty array declaration])
], [