repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git]
/
libxslt
/
dummy
/
bin
/
xml2-config
blob
4ee8dd0206c5fd306539bb15d74f0862607f7052
1
#!/bin/sh
2
3
# Use flags found out by configure when we *don't* want
4
# to use the "system" xml2-config in $PATH
5
6
case
$1
in
7
--cflags
)
8
echo
$LIBXML_CFLAGS
9
;;
10
--libs
)
11
echo
$LIBXML_LIBS
12
;;
13
--version
)
14
# Assume it's close enough to the system version...
15
xml2-config
--version
16
;;
17
esac