summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2005-05-13 01:42:35 +0000
committerwtchang%redhat.com <devnull@localhost>2005-05-13 01:42:35 +0000
commitef5a4c385195f7da9fd37f0fe8838b5e0fd51c20 (patch)
tree79c3bddf773e773f60b127507d5e8ace20c53b61
parentc077f28b07a008ab8edb7c356cf73e452afd585b (diff)
downloadnspr-hg-ef5a4c385195f7da9fd37f0fe8838b5e0fd51c20.tar.gz
Bugzilla Bug 273336: fixed an incorrect variable name.
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index b51fe803..d63586a7 100755
--- a/configure
+++ b/configure
@@ -2583,7 +2583,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
diff --git a/configure.in b/configure.in
index 5fbaf960..c7525355 100644
--- a/configure.in
+++ b/configure.in
@@ -494,7 +494,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