mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Merge remote-tracking branch 'public/bug2430'
This commit is contained in:
commit
e8ed465776
4
changes/bug2430
Normal file
4
changes/bug2430
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes:
|
||||
- Fix a bug in configure.in that kept it from building a configure
|
||||
script with autoconf versions earlier than 2.61. Fixes bug 2430;
|
||||
bugfix on 0.2.3.1-alpha.
|
@ -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
|
||||
])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user