Browse Source

make the check for libpam conditional (#165)

master
Jasper Lievisse Adriaanse 8 years ago
committed by Michael Stapelberg
parent
commit
8c3a110c6a
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      configure.ac

+ 9
- 1
configure.ac View File

@ -76,7 +76,15 @@ AC_SEARCH_LIBS([ev_run], [ev], , [AC_MSG_FAILURE([cannot find the required ev_ru
AC_SEARCH_LIBS([shm_open], [rt]) AC_SEARCH_LIBS([shm_open], [rt])
AC_SEARCH_LIBS([pam_authenticate], [pam])
# Only disable PAM on OpenBSD where i3lock uses BSD Auth instead
case "$host" in
*-openbsd*)
# Nothing yet.
;;
*)
AC_SEARCH_LIBS([pam_authenticate], [pam])
;;
esac
AC_SEARCH_LIBS([iconv_open], [iconv], , [AC_MSG_FAILURE([cannot find the required iconv_open() function despite trying to link with -liconv])]) AC_SEARCH_LIBS([iconv_open], [iconv], , [AC_MSG_FAILURE([cannot find the required iconv_open() function despite trying to link with -liconv])])


Loading…
Cancel
Save