disable xmpp

This commit is contained in:
Joey Hess 2013-05-17 12:31:19 -04:00
parent 86912bc498
commit 74529501ba

View file

@ -7,6 +7,7 @@ set -x
set -e
HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0"
FLAGS="-Webapp -Assistant -XMPP"
PATH="$HP/bin:$HP/lib/extralibs/bin:$PATH"
@ -15,12 +16,14 @@ incygwin () {
PATH="/c/cygwin/bin:$PATH" "$@"
}
# Build git-annex
# Install haskell dependencies.
cabal update
cabal list --installed
# cabal install is not run in cygwin, because we don't want configure scripts
# for haskell libraries to link them with the cygwin library.
FLAGS="-Webapp -Assistant"
cabal install --only-dependencies -f"$FLAGS"
# Build git-annex
incygwin cabal configure -f"$FLAGS"
incygwin cabal build