1dnl ###################################################################### 2dnl Specify additional linker options based on the OS and the compiler 3AC_DEFUN([AMU_OS_LDFLAGS], 4[ 5AC_CACHE_CHECK(additional linker flags, 6ac_cv_os_ldflags, 7[ 8case "${host_os}" in 9 solaris2.7* | sunos5.7* ) 10 # find LDAP: off until Sun includes ldap headers. 11 case "${CC}" in 12 * ) 13 #ac_cv_os_ldflags="-L/usr/lib/fn" 14 ;; 15 esac 16 ;; 17 * ) ac_cv_os_ldflags="" ;; 18esac 19]) 20LDFLAGS="$LDFLAGS $ac_cv_os_ldflags" 21]) 22dnl ====================================================================== 23