diff options
author | Richard Henderson <rth@redhat.com> | 2002-01-22 22:32:35 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2002-01-22 22:32:35 +0000 |
commit | 58b1717a5eda251ff165b5107764947bef66a26e (patch) | |
tree | b3292147d90cd7400159b40f2ee05d4da1d04834 /libiberty/configure | |
parent | 9a2e995d8ac926488ad1472e6fb76352122ff576 (diff) | |
download | gdb-58b1717a5eda251ff165b5107764947bef66a26e.zip gdb-58b1717a5eda251ff165b5107764947bef66a26e.tar.gz gdb-58b1717a5eda251ff165b5107764947bef66a26e.tar.bz2 |
* configure.in (variable detection): Use arrays of unspecified
size instead of plain integers.
Diffstat (limited to 'libiberty/configure')
-rwxr-xr-x | libiberty/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/configure b/libiberty/configure index be1fa94..a406d28 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -2803,7 +2803,7 @@ else #include "confdefs.h" int *p; int main() { -extern int $v; p = &$v; +extern int $v []; p = &$v; ; return 0; } EOF if { (eval echo configure:2810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |