lists.arthurdejong.org
RSS feed

nss-pam-ldapd branch master updated. 0.8.12-148-g2b097f7

[Date Prev][Date Next] [Thread Prev][Thread Next]

nss-pam-ldapd branch master updated. 0.8.12-148-g2b097f7



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 "nss-pam-ldapd".

The branch, master has been updated
       via  2b097f72a5d890728a76e91249daf1fe3e4659b1 (commit)
       via  6ceb1dfc17001a4fcda2875a06e2321121e98f41 (commit)
       via  a47b20f14284beab2239d5ddfb1fdf870f68fcdc (commit)
      from  adde1d4cd3b7bfdd9ed523ad9e0c81f1ca5f6de5 (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 -----------------------------------------------------------------
http://arthurdejong.org/git/nss-pam-ldapd/commit/?id=2b097f72a5d890728a76e91249daf1fe3e4659b1

commit 2b097f72a5d890728a76e91249daf1fe3e4659b1
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Sat Mar 30 13:26:12 2013 +0100

    Preset default configure values consistently

diff --git a/configure.ac b/configure.ac
index 6fdd386..cf960d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -113,7 +113,7 @@ AM_MAINTAINER_MODE([enable])
 AC_MSG_CHECKING([whether to build the NSS module])
 AC_ARG_ENABLE(nss,
               AS_HELP_STRING([--disable-nss],
-                             [build the NSS module [[default=enabled]]]),,
+                             [build the NSS module @<:@enabled@:>@]),,
               [enable_nss="yes"])
 AC_MSG_RESULT($enable_nss)
 AM_CONDITIONAL([ENABLE_NSS], [test "x$enable_nss" = "xyes"])
@@ -122,7 +122,7 @@ AM_CONDITIONAL([ENABLE_NSS], [test "x$enable_nss" = "xyes"])
 AC_MSG_CHECKING([whether to build the PAM module])
 AC_ARG_ENABLE(pam,
               AS_HELP_STRING([--disable-pam],
-                             [build the PAM module [[default=enabled]]]),,
+                             [build the PAM module @<:@enabled@:>@]),,
               [enable_pam="yes"])
 AC_MSG_RESULT($enable_pam)
 AM_CONDITIONAL([ENABLE_PAM], [test "x$enable_pam" = "xyes"])
@@ -149,7 +149,7 @@ AM_CONDITIONAL([ENABLE_UTILS], [test "x$enable_utils" = 
"xyes"])
 AC_MSG_CHECKING([whether to build the nslcd daemon])
 AC_ARG_ENABLE(nslcd,
               AS_HELP_STRING([--disable-nslcd],
-                             [build the nslcd daemon [[default=enabled]]]),,
+                             [build the nslcd daemon @<:@enabled@:>@]),,
               [enable_nslcd="yes"])
 AC_MSG_RESULT($enable_nslcd)
 AM_CONDITIONAL([ENABLE_NSLCD], [test "x$enable_nslcd" = "xyes"])
@@ -158,7 +158,7 @@ AM_CONDITIONAL([ENABLE_NSLCD], [test "x$enable_nslcd" = 
"xyes"])
 AC_MSG_CHECKING([whether to build the pynslcd daemon])
 AC_ARG_ENABLE(pynslcd,
               AS_HELP_STRING([--enable-pynslcd],
-                             [build the pynslcd daemon [[default=disabled]]]),,
+                             [build the pynslcd daemon @<:@disabled@:>@]),,
               [enable_pynslcd="no"])
 AC_MSG_RESULT($enable_pynslcd)
 AM_CONDITIONAL([ENABLE_PYNSLCD], [test "x$enable_pynslcd" = "xyes"])
@@ -171,7 +171,7 @@ fi
 AC_MSG_CHECKING([whether to enable SASL support])
 AC_ARG_ENABLE(sasl,
               AS_HELP_STRING([--disable-sasl],
-                             [disable SASL support [[default=enabled]]]),
+                             [disable SASL support @<:@enabled@:>@]),
               [enable_sasl=$enableval],
               [enable_sasl="yes"])
 AC_MSG_RESULT($enable_sasl)
@@ -180,7 +180,7 @@ AC_MSG_RESULT($enable_sasl)
 AC_MSG_CHECKING([whether to enable Kerberos support])
 AC_ARG_ENABLE(kerberos,
               AS_HELP_STRING([--disable-kerberos],
-                             [disable Kerberos support [[default=enabled]]]),
+                             [disable Kerberos support @<:@enabled@:>@]),
               [enable_kerberos=$enableval],
               [enable_kerberos="yes"])
 AC_MSG_RESULT($enable_kerberos)
@@ -189,7 +189,7 @@ AC_MSG_RESULT($enable_kerberos)
 AC_MSG_CHECKING([whether to check configfile options])
 AC_ARG_ENABLE(configfile_checking,
               AS_HELP_STRING([--disable-configfile-checking],
-                             [check configfile options [[default=enabled]]]),
+                             [check configfile options @<:@enabled@:>@]),
               [configfile_checking=$enableval],
               [configfile_checking="yes"])
 AC_MSG_RESULT($configfile_checking)

http://arthurdejong.org/git/nss-pam-ldapd/commit/?id=6ceb1dfc17001a4fcda2875a06e2321121e98f41

commit 6ceb1dfc17001a4fcda2875a06e2321121e98f41
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Sat Mar 30 13:25:57 2013 +0100

    Give an error when the Python interpreter is missing

diff --git a/configure.ac b/configure.ac
index 4106968..6fdd386 100644
--- a/configure.ac
+++ b/configure.ac
@@ -801,7 +801,7 @@ fi
 if test "x$enable_pynslcd" = "xyes" || test "x$enable_utils" = "xyes"
 then
   # check Python interpreter
-  AM_PATH_PYTHON(2.5)
+  AM_PATH_PYTHON(2.5,, AC_MSG_ERROR([Python is required]))
 fi
 
 AM_CONDITIONAL([NSS_FLAVOUR_GLIBC], [test "x${with_nss_flavour}" = xglibc])

http://arthurdejong.org/git/nss-pam-ldapd/commit/?id=a47b20f14284beab2239d5ddfb1fdf870f68fcdc

commit a47b20f14284beab2239d5ddfb1fdf870f68fcdc
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Fri Mar 29 23:44:08 2013 +0100

    Build command-line utilities by default if Python is available

diff --git a/configure.ac b/configure.ac
index 47fafd9..4106968 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,6 +60,7 @@ AC_PROG_RANLIB
 AM_PROG_CC_C_O
 AC_USE_SYSTEM_EXTENSIONS
 AC_PROG_LN_S
+AM_PATH_PYTHON(2.5)
 
 # checks for tool to convert docbook to man
 AC_PATH_PROGS(DOCBOOK2X_MAN, docbook2x-man)
@@ -130,8 +131,17 @@ AM_CONDITIONAL([ENABLE_PAM], [test "x$enable_pam" = 
"xyes"])
 AC_MSG_CHECKING([whether to build the command-line utilities])
 AC_ARG_ENABLE(utils,
               AS_HELP_STRING([--enable-utils],
-                             [build the the command-line utilities 
[[default=disabled]]]),,
-              [enable_util="no"])
+                             [build the the command-line utilities 
@<:@auto@:>@]),,
+              [enable_utils="auto"])
+if test "x$enable_utils" = "xauto"
+then
+  if test "x$PYTHON" = "x"
+  then
+    enable_utils="no"
+  else
+    enable_utils="yes"
+  fi
+fi
 AC_MSG_RESULT($enable_utils)
 AM_CONDITIONAL([ENABLE_UTILS], [test "x$enable_utils" = "xyes"])
 

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |   30 ++++++++++++++++++++----------
 1 files changed, 20 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
nss-pam-ldapd
-- 
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits/