disable xmpp
This commit is contained in:
parent
86912bc498
commit
74529501ba
1 changed files with 5 additions and 2 deletions
|
@ -7,6 +7,7 @@ set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0"
|
HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0"
|
||||||
|
FLAGS="-Webapp -Assistant -XMPP"
|
||||||
|
|
||||||
PATH="$HP/bin:$HP/lib/extralibs/bin:$PATH"
|
PATH="$HP/bin:$HP/lib/extralibs/bin:$PATH"
|
||||||
|
|
||||||
|
@ -15,12 +16,14 @@ incygwin () {
|
||||||
PATH="/c/cygwin/bin:$PATH" "$@"
|
PATH="/c/cygwin/bin:$PATH" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Build git-annex
|
# Install haskell dependencies.
|
||||||
cabal update
|
cabal update
|
||||||
|
cabal list --installed
|
||||||
# cabal install is not run in cygwin, because we don't want configure scripts
|
# cabal install is not run in cygwin, because we don't want configure scripts
|
||||||
# for haskell libraries to link them with the cygwin library.
|
# for haskell libraries to link them with the cygwin library.
|
||||||
FLAGS="-Webapp -Assistant"
|
|
||||||
cabal install --only-dependencies -f"$FLAGS"
|
cabal install --only-dependencies -f"$FLAGS"
|
||||||
|
|
||||||
|
# Build git-annex
|
||||||
incygwin cabal configure -f"$FLAGS"
|
incygwin cabal configure -f"$FLAGS"
|
||||||
incygwin cabal build
|
incygwin cabal build
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue