Browse Source

Merge branch 'master' of https://github.com/i3/i3lock

master
Pandora 7 years ago
parent
commit
01476c5633
  1. 10
      configure.ac

10
configure.ac

@ -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([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])])

Loading…
Cancel
Save