diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -638,11 +638,7 @@ fi | |||
638 | if test "$gcc" -eq 1; then | 638 | if test "$gcc" -eq 1; then |
639 | echo >> configure.log | 639 | echo >> configure.log |
640 | cat > $test.c <<EOF | 640 | cat > $test.c <<EOF |
641 | #if ((__GNUC__-0) * 100 + __GNUC_MINOR__-0 >= 303) | 641 | #define ZLIB_INTERNAL __attribute__((visibility ("hidden"))) |
642 | # define ZLIB_INTERNAL __attribute__((visibility ("hidden"))) | ||
643 | #else | ||
644 | # define ZLIB_INTERNAL | ||
645 | #endif | ||
646 | int ZLIB_INTERNAL foo; | 642 | int ZLIB_INTERNAL foo; |
647 | int main() | 643 | int main() |
648 | { | 644 | { |
@@ -650,10 +646,10 @@ int main() | |||
650 | } | 646 | } |
651 | EOF | 647 | EOF |
652 | if tryboth $CC -c $CFLAGS $test.c; then | 648 | if tryboth $CC -c $CFLAGS $test.c; then |
649 | CFLAGS="$CFLAGS -DHAVE_HIDDEN" | ||
650 | SFLAGS="$SFLAGS -DHAVE_HIDDEN" | ||
653 | echo "Checking for attribute(visibility) support... Yes." | tee -a configure.log | 651 | echo "Checking for attribute(visibility) support... Yes." | tee -a configure.log |
654 | else | 652 | else |
655 | CFLAGS="$CFLAGS -DNO_VIZ" | ||
656 | SFLAGS="$SFLAGS -DNO_VIZ" | ||
657 | echo "Checking for attribute(visibility) support... No." | tee -a configure.log | 653 | echo "Checking for attribute(visibility) support... No." | tee -a configure.log |
658 | fi | 654 | fi |
659 | fi | 655 | fi |