summaryrefslogtreecommitdiff
path: root/contrib/amd/m4/macros/os_ldflags.m4
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/amd/m4/macros/os_ldflags.m4')
-rw-r--r--contrib/amd/m4/macros/os_ldflags.m422
1 files changed, 0 insertions, 22 deletions
diff --git a/contrib/amd/m4/macros/os_ldflags.m4 b/contrib/amd/m4/macros/os_ldflags.m4
deleted file mode 100644
index f46debbc63d2a..0000000000000
--- a/contrib/amd/m4/macros/os_ldflags.m4
+++ /dev/null
@@ -1,22 +0,0 @@
-dnl ######################################################################
-dnl Specify additional linker options based on the OS and the compiler
-AC_DEFUN(AMU_OS_LDFLAGS,
-[
-AC_CACHE_CHECK(additional linker flags,
-ac_cv_os_ldflags,
-[
-case "${host_os}" in
- solaris2.7* | sunos5.7* )
- # find LDAP: off until Sun includes ldap headers.
- case "${CC}" in
- * )
- #ac_cv_os_ldflags="-L/usr/lib/fn"
- ;;
- esac
- ;;
- * ) ac_cv_os_ldflags="" ;;
-esac
-])
-LDFLAGS="$LDFLAGS $ac_cv_os_ldflags"
-])
-dnl ======================================================================