Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (c210583e951002610cfe83c8632deec902ecf361)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (c210583e951002610cfe83c8632deec902ecf361)
  • Date: Wed, 30 May 2007 18:30:24 -0500

GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:

chat-im/jabberd/CONFIGURE | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)

New commits:
commit c210583e951002610cfe83c8632deec902ecf361
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

jabberd: only clobber the JABBERD_SASL variable if it's empty...

diff --git a/chat-im/jabberd/CONFIGURE b/chat-im/jabberd/CONFIGURE
index ea182ce..800b02a 100755
--- a/chat-im/jabberd/CONFIGURE
+++ b/chat-im/jabberd/CONFIGURE
@@ -1,9 +1,10 @@
-if spell_ok cyrus-sasl; then
- JABBERD_SASL="cyrus-sasl"
-elif spell_ok gsasl; then
- JABBERD_SASL="gsasl"
+if [[ "$JABBERD_SASL" == "" ]]; then
+ if spell_ok cyrus-sasl; then
+ JABBERD_SASL="cyrus-sasl"
+ elif spell_ok gsasl; then
+ JABBERD_SASL="gsasl"
+ fi
fi
-
config_query_list JABBERD_SASL 'Choose your SASL implementation' \
gsasl cyrus-sasl &&




  • [SM-Commit] GIT changes to master grimoire by David Kowis (c210583e951002610cfe83c8632deec902ecf361), David Kowis, 05/30/2007

Archive powered by MHonArc 2.6.24.

Top of Page