Fixing bustage

This commit is contained in:
bryner%brianryner.com 2004-12-15 07:04:54 +00:00
parent d9626f6746
commit 1d891ab860
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -7011,7 +7011,7 @@ else
cat > conftest.c <<EOF
int foo __attribute__ ((visibility ("hidden"))) = 1;
EOF
ac_cv_visibility_attribute=no
ac_cv_visibility_hidden=no
if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
if grep '\.hidden.*foo' conftest.s >/dev/null; then
ac_cv_visibility_hidden=yes

View File

@ -1935,7 +1935,7 @@ if test "$GNU_CC"; then
[cat > conftest.c <<EOF
int foo __attribute__ ((visibility ("hidden"))) = 1;
EOF
ac_cv_visibility_attribute=no
ac_cv_visibility_hidden=no
if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
if grep '\.hidden.*foo' conftest.s >/dev/null; then
ac_cv_visibility_hidden=yes