[X2Go-Commits] libpam-x2go.git - build-main (branch) updated: 497c3e3ff6b0055e40fa5fad3db248a48902f40a
X2Go dev team
git-admin at x2go.org
Sat Apr 27 13:45:26 CEST 2013
The branch, build-main has been updated
via 497c3e3ff6b0055e40fa5fad3db248a48902f40a (commit)
from 6b8fc6c1845aa0df788c37d997a7e11a7fdabba9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
The diff of changes is:
diff --git a/configure.ac b/configure.ac
index 05b48d1..1d3a0a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,12 +7,38 @@ AM_SILENT_RULES([yes])
AC_PROG_CC
AC_PROG_LIBTOOL
+###########################
+# PAM
+###########################
+
have_pam=no
AC_CHECK_LIB(pam, pam_getenv, have_pam=yes)
if test "x$have_pam" = "xno"; then
AC_MSG_ERROR([Required library PAM was not found])
fi
+###########################
+# Local Install
+###########################
+
+with_localinstall="no"
+AC_ARG_ENABLE(localinstall, AS_HELP_STRING([--enable-localinstall],
+ [install all files locally (for distcheck)]),
+ with_localinstall=$enableval,
+ with_localinstall=no)
+
+###########################
+# PAM Module dir
+###########################
+
+if test "x$with_localinstall" = "xyes"; then
+ PAMMODULEDIR="${libdir}/security/"
+else
+ PAMMODULEDIR="/lib/security"
+fi
+AC_SUBST(PAMMODULEDIR)
+
+
AC_CONFIG_FILES([
Makefile
src/Makefile
hooks/post-receive
--
libpam-x2go.git (Remote login session via X2Go (PAM module))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libpam-x2go.git" (Remote login session via X2Go (PAM module)).
More information about the x2go-commits
mailing list