Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (9bdef3b99c1f253f45b1698f0fa0bd2f2493ea94)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (9bdef3b99c1f253f45b1698f0fa0bd2f2493ea94)
  • Date: Thu, 17 Jan 2008 17:42:02 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

devel/python/BUILD | 10 +++++++++-
devel/python/CONFIGURE | 2 ++
devel/python/HISTORY | 3 +++
3 files changed, 14 insertions(+), 1 deletion(-)

New commits:
commit 9bdef3b99c1f253f45b1698f0fa0bd2f2493ea94
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

python: ipv6 and threads => configurable

diff --git a/devel/python/BUILD b/devel/python/BUILD
index 69f6961..22addd2 100755
--- a/devel/python/BUILD
+++ b/devel/python/BUILD
@@ -1,5 +1,13 @@
OPT="$CFLAGS" &&
-OPTS="$OPTS --enable-shared --enable-unicode --with-threads --enable-ipv6" &&
+OPTS="$OPTS --enable-shared --enable-unicode" &&
+
+if [[ $IPV6 == y ]]; then
+ OPTS="$OPTS --enable-ipv6"
+fi &&
+
+if [[ $THREADS == y ]]; then
+ OPTS="$OPTS --with-threads"
+fi &&

# The following file from kdebindings has a syntax error that
# makes Python compilation fail
diff --git a/devel/python/CONFIGURE b/devel/python/CONFIGURE
new file mode 100755
index 0000000..ad0b08c
--- /dev/null
+++ b/devel/python/CONFIGURE
@@ -0,0 +1,2 @@
+config_query IPV6 "Enable IPv6?" n &&
+config_query THREADS "Enable threads support?" n
diff --git a/devel/python/HISTORY b/devel/python/HISTORY
index ec10480..1c4108d 100644
--- a/devel/python/HISTORY
+++ b/devel/python/HISTORY
@@ -1,3 +1,6 @@
+2008-01-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD, CONFIGURE: ipv6 and threads => configurable
+
2008-01-17 Vlad Glagolev <stealth AT sourcemage.org>
* BUILD: added some options: ipv6 and threading support
* INSTALL: copy the stuff from fake dir, removed dirty hacks




Archive powered by MHonArc 2.6.24.

Top of Page