Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (9185b78e656334d0db38b1265a5c0e4b59676e55)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Sukneet Basuta <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (9185b78e656334d0db38b1265a5c0e4b59676e55)
  • Date: Fri, 1 Feb 2013 20:26:10 -0600

GIT changes to master grimoire by Sukneet Basuta <sukneet AT sourcemage.org>:

crypto/krb5/BUILD | 1 +
crypto/krb5/HISTORY | 5 +++++
crypto/krb5/TRIGGERS | 2 +-
3 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 9185b78e656334d0db38b1265a5c0e4b59676e55
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

krb5: fix build with tcl 8.6
define USE_INTERP_RESULT to fix building with tcl 8.6
* Note that this is a hack and should be removed on next update *

TRIGGERS: fixed improper quoting

diff --git a/crypto/krb5/BUILD b/crypto/krb5/BUILD
index 65421ee..a887244 100755
--- a/crypto/krb5/BUILD
+++ b/crypto/krb5/BUILD
@@ -1,3 +1,4 @@
cd $SPELL-$VERSION/src &&
+CPPFLAGS="$CPPFLAGS -DUSE_INTERP_RESULT" &&
OPTS+=" --enable-dns-for-realm"
default_build
diff --git a/crypto/krb5/HISTORY b/crypto/krb5/HISTORY
index 52d8127..2c08734 100644
--- a/crypto/krb5/HISTORY
+++ b/crypto/krb5/HISTORY
@@ -1,3 +1,8 @@
+2013-02-01 Sukneet Basuta <sukneet AT sourcemage.org>
+ * BUILD: define USE_INTERP_RESULT to fix building with tcl 8.6
+ Note that this is a hack and should be removed on next update
+ * TRIGGERS: fixed improper quoting
+
2012-12-24 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.11
* PRE_BUILD: do not apply patch
diff --git a/crypto/krb5/TRIGGERS b/crypto/krb5/TRIGGERS
index c8d3360..991c592 100755
--- a/crypto/krb5/TRIGGERS
+++ b/crypto/krb5/TRIGGERS
@@ -1,5 +1,5 @@
for i in $(grep $SPELL $DEPENDS_STATUS);
-do if [ $(echo $i | cut -d: -f1) = "$SPELL" ] && [ $(echo $i | cut -d: -f2)
== "linux-pam" ] && [ $(echo $i | cut -d: -f3 ) = "on" ] ;
+do if [ "$(echo $i | cut -d: -f1)" = "$SPELL" ] && [ "$(echo $i | cut -d:
-f2)" == "linux-pam" ] && [ "$(echo $i | cut -d: -f3 )" = "on" ] ;
then on_cast linux-pam cast_self
fi
done



  • [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (9185b78e656334d0db38b1265a5c0e4b59676e55), Sukneet Basuta, 02/01/2013

Archive powered by MHonArc 2.6.24.

Top of Page