summaryrefslogtreecommitdiffstats
path: root/m4/ld-no-undefined.m4
blob: 6f342d002107e46394c76cd257461091b7526f2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/m4
dnl Check whether ld supports --no-undefined

AC_DEFUN([PAM_LD_NO_UNDEFINED], [dnl
  AC_CACHE_CHECK([whether ld supports --no-undefined],
                 [pam_cv_ld_no_undefined],
                 [saved_LDFLAGS="$LDFLAGS"
                  LDFLAGS="$LDFLAGS -Wl,--no-undefined"
                  AC_LINK_IFELSE([AC_LANG_PROGRAM(,)],
                                 [pam_cv_ld_no_undefined=yes],
                                 [pam_cv_ld_no_undefined=no])
                  LDFLAGS="$saved_LDFLAGS"])
  AS_IF([test $pam_cv_ld_no_undefined = yes],
        [LDFLAGS="$LDFLAGS -Wl,--no-undefined"])
])