Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (7fba01d4b4038dae8a2b4a2182ef4891d0d5a517)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (7fba01d4b4038dae8a2b4a2182ef4891d0d5a517)
  • Date: Mon, 10 Nov 2008 05:56:42 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

php-pear/php/HISTORY | 3 +++
php-pear/php/PRE_SUB_DEPENDS | 5 +++++
php-pear/php/SUB_DEPENDS | 4 ++++
3 files changed, 12 insertions(+)

New commits:
commit 7fba01d4b4038dae8a2b4a2182ef4891d0d5a517
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

php: Allow forcing curl dependency

diff --git a/php-pear/php/HISTORY b/php-pear/php/HISTORY
index 3128a03..42f4f5a 100644
--- a/php-pear/php/HISTORY
+++ b/php-pear/php/HISTORY
@@ -1,3 +1,6 @@
+2008-11-10 Elisamuel Resto <ryuji AT sourcemage.org>
+ * PRE_SUB_DEPENDS,SUB_DEPENDS: Allow forcing curl dependency
+
2008-11-08 Elisamuel Resto <ryuji AT sourcemage.org>
* DETAILS: updated the RC to 5.2.7RC3

diff --git a/php-pear/php/PRE_SUB_DEPENDS b/php-pear/php/PRE_SUB_DEPENDS
new file mode 100755
index 0000000..991ce23
--- /dev/null
+++ b/php-pear/php/PRE_SUB_DEPENDS
@@ -0,0 +1,5 @@
+case $THIS_SUB_DEPENDS in
+ CURL) is_depends_enabled $SPELL curl && return 0 ;;
+ *) echo "Unknown sub_depends!" ;;
+esac
+return 1
diff --git a/php-pear/php/SUB_DEPENDS b/php-pear/php/SUB_DEPENDS
new file mode 100755
index 0000000..41ee38d
--- /dev/null
+++ b/php-pear/php/SUB_DEPENDS
@@ -0,0 +1,4 @@
+case $THIS_SUB_DEPENDS in
+ CURL) depends curl '--with-curl' ;;
+ *) echo "Unknown sub_depends $THIS_SUB_DEPENDS"; false ;;
+esac



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (7fba01d4b4038dae8a2b4a2182ef4891d0d5a517), Eric Sandall, 11/10/2008

Archive powered by MHonArc 2.6.24.

Top of Page