Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Matthew Clark (e85fa8eba06d3d4c9b8231e321ace2c8043f2e68)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Matthew Clark <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Matthew Clark (e85fa8eba06d3d4c9b8231e321ace2c8043f2e68)
  • Date: Fri, 11 Aug 2006 19:47:11 -0500

GIT changes to master grimoire by Matthew Clark
<matthewclark AT inlesserterms.net>:

science/boinc/BUILD | 11 +++++++----
science/boinc/DEPENDS | 1 +
science/boinc/HISTORY | 4 ++++
3 files changed, 12 insertions(+), 4 deletions(-)

New commits:
commit d760c89656802c641dcaff1ddccb0cb26895c7a2
Author: Matthew Clark <matthewclark AT inlesserterms.net>
Commit: Matthew Clark <matthewclark AT inlesserterms.net>

Fixed how the client/server component flags were set
for ./configure.

diff --git a/science/boinc/BUILD b/science/boinc/BUILD
index 2d6236e..4a685af 100755
--- a/science/boinc/BUILD
+++ b/science/boinc/BUILD
@@ -1,11 +1,12 @@
-if [[ $BOINC_PARTS == client || $BOINC_PARTS == both ]]
+if [[ $BOINC_PARTS == client ]]
then
- OPTS="$OPTS --enable-client"
+ OPTS="$OPTS --disable-server"
fi &&
-if [[ $BOINC_PARTS == server || $BOINC_PARTS == both ]]
+if [[ $BOINC_PARTS == server ]]
then
- OPTS="$OPTS --enable-server"
+ OPTS="$OPTS --disable-client"
fi &&
+
case "${SMGL_COMPAT_ARCH[0]}" in
64)
OPTS="$OPTS --enable-bitness=64"
@@ -14,5 +15,7 @@ case "${SMGL_COMPAT_ARCH[0]}" in
OPTS="$OPTS --enable-bitness=32"
;;
esac &&
+
OPTS="$OPTS --with-gnu-ld --program-suffix=-cvs -C"
+
default_build
diff --git a/science/boinc/DEPENDS b/science/boinc/DEPENDS
index cb8e528..a34ce63 100755
--- a/science/boinc/DEPENDS
+++ b/science/boinc/DEPENDS
@@ -1,3 +1,4 @@
+depends cvs &&
depends autoconf &&
depends automake &&
depends curl &&
diff --git a/science/boinc/HISTORY b/science/boinc/HISTORY
index 4bfd7b8..92c57ea 100644
--- a/science/boinc/HISTORY
+++ b/science/boinc/HISTORY
@@ -1,3 +1,7 @@
+2006-08-11 Matthew Clark <matthewclark AT inlesserterms.net>
+ * BUILD: Fixed the way the client/server configure flags are set and
+ * DEPENDS: Added dependency on CVS, fixes bug 10804
+
2006-05-17 Eric Sandall <eric AT sandall.us>
* shmem-type-cast-presision-loss.patch: Removed (now uses (long)p)
* PRE_BUILD: No longer try to apply
shmem-type-cast-presision-loss.patch




Archive powered by MHonArc 2.6.24.

Top of Page