Disable suncc visibility completely, still too many problems

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13148 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Stefan Knoblich 2009-04-25 18:10:27 +00:00
parent 185cea3bc7
commit 9611486742
1 changed files with 17 additions and 17 deletions

View File

@ -212,23 +212,23 @@ if test "x${enable_visibility}" != "xno" ; then
;; ;;
sun) sun)
save_CFLAGS="${CFLAGS}" # save_CFLAGS="${CFLAGS}"
CFLAGS="${CFLAGS} -xldscope=hidden" # CFLAGS="${CFLAGS} -xldscope=hidden"
AC_MSG_CHECKING([whether the compiler supports -xldscope=hidden]) # AC_MSG_CHECKING([whether the compiler supports -xldscope=hidden])
AC_COMPILE_IFELSE( # AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM( # [AC_LANG_PROGRAM(
[int foo __attribute__ ((visibility("default")));], # [int foo __attribute__ ((visibility("default")));],
[;] # [;]
)], # )],
#
[AC_MSG_RESULT([yes]) # [AC_MSG_RESULT([yes])
APR_ADDTO([SWITCH_AM_CFLAGS], [-xldscope=hidden -DSWITCH_API_VISIBILITY=1 -DHAVE_VISIBILITY=1]) # APR_ADDTO([SWITCH_AM_CFLAGS], [-xldscope=hidden -DSWITCH_API_VISIBILITY=1 -DHAVE_VISIBILITY=1])
APR_ADDTO([SWITCH_AM_CXXFLAGS], [-xldscope=hidden -DSWITCH_API_VISIBILITY=1 -DHAVE_VISIBILITY=1]) # APR_ADDTO([SWITCH_AM_CXXFLAGS], [-xldscope=hidden -DSWITCH_API_VISIBILITY=1 -DHAVE_VISIBILITY=1])
HAVE_VISIBILITY="yes"], # HAVE_VISIBILITY="yes"],
#
[AC_MSG_RESULT([no])] # [AC_MSG_RESULT([no])]
) # )
CFLAGS="${save_CFLAGS}" # CFLAGS="${save_CFLAGS}"
;; ;;
*) *)