Skip to content

Commit

Permalink
Merge 2a98e0a into 04f26f7
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundoferreira committed Dec 5, 2019
2 parents 04f26f7 + 2a98e0a commit 631063e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ endif
ykpamcfg_SOURCES = ykpamcfg.c
ykpamcfg_LDADD = libpam_util.la

if ENABLE_DOC
if YKPERS
dist_man1_MANS = ykpamcfg.1
endif
Expand All @@ -78,6 +79,8 @@ SUFFIXES = .1.txt .1 .8.txt .8
$(A2X) -L --format=manpage -a revdate="Version $(VERSION)" $<


endif

if ENABLE_COV
AM_CFLAGS += --coverage
AM_LDFLAGS = --coverage
Expand Down
8 changes: 8 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ AC_CHECK_LIB([pam], [pam_start], [AC_SUBST([LIBPAM], ["-lpam"])])

AC_SEARCH_LIBS([pam_modutil_drop_priv], ["pam"], [AC_DEFINE([HAVE_PAM_MODUTIL_DROP_PRIV], [1])])

# --disable-documentation
AC_ARG_ENABLE([documentation],
[AS_HELP_STRING([--disable-documentation],
[do not build documentation])],
[enable_doc="${enableval}" ],
[enable_doc="yes"])
AM_CONDITIONAL(ENABLE_DOC, test "$enable_doc" != "no")

AC_ARG_WITH([ldap],
[AS_HELP_STRING([--without-ldap],
[disable support for ldap])],
Expand Down

0 comments on commit 631063e

Please sign in to comment.