diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-11 18:05:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-11 20:24:16 +0200 |
commit | 68e2a4e41d6e81a6e95a296d775c9ac8f5c97e8b (patch) | |
tree | b698ccea98a16bb5f5273f3931a1a7562def8766 /configure.ac | |
parent | 4db25c3e85ac3f30a9f6e1440ad440160edbb56e (diff) |
Revert "Visibility doesn't seem to work as we want in Apple's Clang"
This reverts commit e5143062887093037cab8f936288af8408576ea8; not sure what
problems exactly it was supposed to work around, but at least a "make check"
against Apple's Clang "Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM
3.2svn)" on Mac OS X 10.8 works flawlessly.
Conflicts:
configure.in
Change-Id: Ib7c80dd29e9e7a92b90be3919cd097b7e64883a1
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 398968374b14..b23cc0e2a056 100644 --- a/configure.ac +++ b/configure.ac @@ -5786,14 +5786,6 @@ if test "$GCC" = "yes"; then AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[ return 0; ]])],[ HAVE_GCC_VISIBILITY_FEATURE=TRUE ],[]) CFLAGS=$save_CFLAGS - if test "$COM_GCC_IS_CLANG" = TRUE -a $_os = Darwin; then - # It seems that with Apple's Clang, visibility doesn't work as - # we would want at least in the connectivity and dbaccess - # modules. This might be because of something peculiar in - # those modules? Whatever. - HAVE_GCC_VISIBILITY_FEATURE= - fi - if test "$HAVE_GCC_VISIBILITY_FEATURE" = "TRUE"; then AC_MSG_RESULT([yes]) else |