Displaying 1 result from an estimated 1 matches for "build_dlfcn_darwin".
2005 Jul 06
0
MacOS 10.4 gcc-4.0 and libcc_dynamic
Around line 527 of configure.ac in R-2.1.1 appears the following:
darwin*)
## MacOS 10.3 and 10.4 do
AM_CONDITIONAL(BUILD_DLFCN_DARWIN, false)
## SI says we want '-lcc_dynamic' on Darwin, although currently
## http://developer.apple.com /documentation/MacOSX/ has nothing
## official.
AC_CHECK_LIB(cc_dynamic, main)
;;
*)
AM_CONDITIONAL(BUILD_DLFCN_DARWIN, false)
AC_CHECK_LIB(dl, dlopen)...