aboutsummaryrefslogtreecommitdiff
path: root/build/subversion-build.sh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2003-04-25 15:33:50 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2003-04-25 15:33:50 +0000
commit94dbdc53b25de7564b338eb9c3b75d7f2828f047 (patch)
treecbd2f7b741d178b69a45e99c01c478f6a20dfdfc /build/subversion-build.sh
parent7fa3a3f2fa76d1c16c8df18cf9e2361ec745683b (diff)
* Cleaned up the semantics of Fix expressions.
* Conditionals and variables in Fix expressions. This allows, e.g., Descr( [ Bind("pkgId", "subversion-0.21.0") , Bind("httpsClient", Bool(True)) , Bind("httpServer", Bool(True)) , Bind("ssl", If(Var("httpsClient"), Fix("./openssl-0.9.7b.fix"), "")) , Bind("httpd", If(Var("httpServer"), Fix("./httpd-2.0.45.fix"), "")) ... ]) which introduces domain feature variables httpsClient and httpServer (i.e., whether Subversion is built with https client and webdav server support); the values of the variables influences package dependencies and the build scripts. The next step is to allow that packages can express constraints on each other. E.g., StrategoXT is dependent on an ATerm library with the "gcc" variant enabled. In fact, this may cause several Nix instantiations to be created from a single Fix descriptor. If possible, Fix should try to find the least set of instantiations that obeys the constraints. svn path=/nix/trunk/test/; revision=53
Diffstat (limited to '')
-rwxr-xr-xbuild/subversion-build.sh16
1 files changed, 14 insertions, 2 deletions
diff --git a/build/subversion-build.sh b/build/subversion-build.sh
index cc1eba214e4..3d1922c98ad 100755
--- a/build/subversion-build.sh
+++ b/build/subversion-build.sh
@@ -5,10 +5,22 @@ export PATH=/bin:/usr/bin
export LDFLAGS=-s
top=`pwd`
+
+if test $httpsClient; then
+ extraflags="--with-ssl --with-libs=$ssl $extraflags"
+fi
+
+if test $httpServer; then
+ extraflags="--with-apxs=$httpd/bin/apxs --with-apr=$httpd --with-apr-util=$httpd $extraflags"
+ extrainst="APACHE_LIBEXECDIR=$top/modules $extrainst"
+fi
+
+echo "extra flags: $extraflags"
+
tar xvfz $src || exit 1
cd subversion-* || exit 1
-./configure --prefix=$top --with-ssl || exit 1
+./configure --prefix=$top $extraflags || exit 1
make || exit 1
-make install || exit 1
+make install $extrainst || exit 1
cd $top || exit 1
rm -rf subversion-* || exit 1