projects
/
melted
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Constness changes
[melted]
/
src
/
modules
/
westley
/
configure
1
#!/bin/sh
2
3
if [ "$help" != "1" ]
4
then
5
6
which xml2-config > /dev/null 2>&1
7
disable_xml2=$?
8
9
if [ "$disable_xml2" != "0" ]
10
then
11
echo "- xml2 not found: disabling westley modules"
12
touch ../disable-westley
13
fi
14
exit 0
15
fi
16