No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / os_ldflags.m4
bloba81972f3d262444b7abd20c77c7ad7bb690b1b07
1 dnl ######################################################################
2 dnl Specify additional linker options based on the OS and the compiler
3 AC_DEFUN([AMU_OS_LDFLAGS],
5 AC_CACHE_CHECK(additional linker flags,
6 ac_cv_os_ldflags,
8 case "${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="" ;;
18 esac
20 LDFLAGS="$LDFLAGS $ac_cv_os_ldflags"
22 dnl ======================================================================