~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_pam/plug.in

  • Committer: Monty
  • Date: 2008-11-07 05:51:15 UTC
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: mordred@palanthas.inaugust.com-20081107055115-0275gvq62buzls77
Fixed a decimal sign thing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[plugin]
2
 
title=PAM Authenication Plugin
3
 
description=PAM based authenication.
4
 
build_conditional="$ac_cv_libpam" = "yes"
5
 
ldflags=${LTLIBPAM}
6
 
extra_dist=README
 
1
DRIZZLE_PLUGIN(auth_pam,[PAM Authenication Plugin],
 
2
        [PAM based authenication.])
 
3
DRIZZLE_PLUGIN_DYNAMIC(auth_pam,   [libauth_pam.la])
 
4
DRIZZLE_PLUGIN_ACTIONS(auth_pam,  [
 
5
  AC_CHECK_HEADERS(security/pam_appl.h)
 
6
  AM_CONDITIONAL(BUILD_AUTH_PAM,[test "$ac_cv_header_security_pam_appl_h" = "yes"])
 
7
  AS_IF([test "$ac_cv_header_security_pam_appl_h" = "no"],
 
8
   [AC_MSG_WARN([Couldn't find PAM headers, pam_auth will not be built])])
 
9
])
 
10