mirror of
https://github.com/darlinghq/darling-libxslt.git
synced 2024-12-02 08:56:24 +00:00
git setup
* configure.in: adapt the extra version detection code to git * libxslt.doap: adding RDF dope file Daniel
This commit is contained in:
parent
cc8f0964b2
commit
e502173b7a
@ -1,3 +1,8 @@
|
||||
Tue May 12 09:03:46 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* configure.in: adapt the extra version detection code to git
|
||||
* libxslt.doap: adding RDF dope file
|
||||
|
||||
Fri Jan 23 19:02:28 PST 2009 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* libexslt/strings.c: Fixed indexing error reported by
|
||||
|
@ -39,6 +39,14 @@ else if test -d .svn ; then
|
||||
then
|
||||
LIBXSLT_VERSION_EXTRA="-SVN$extra"
|
||||
fi
|
||||
else if test -d .git ; then
|
||||
extra=`git describe | sed 's+LIBXSLT[[0-9.]]*-++'`
|
||||
echo extra=$extra
|
||||
if test "$extra" != ""
|
||||
then
|
||||
LIBXSLT_VERSION_EXTRA="-GIT$extra"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
19
libxslt.doap
Normal file
19
libxslt.doap
Normal file
@ -0,0 +1,19 @@
|
||||
<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:gnome="http://api.gnome.org/doap-extensions#"
|
||||
xmlns="http://usefulinc.com/ns/doap#">
|
||||
|
||||
<name xml:lang="en">libxslt</name>
|
||||
<shortdesc xml:lang="en">XSLT transformation library</shortdesc>
|
||||
<homepage rdf:resource="http://xmlsoft.org/XSLT/" />
|
||||
<mailing-list rdf:resource="http://mail.gnome.org/mailman/listinfo/xslt" />
|
||||
<category rdf:resource="http://api.gnome.org/doap-extensions#platform" />
|
||||
|
||||
<maintainer>
|
||||
<foaf:Person>
|
||||
<foaf:name>Daniel Veillard</foaf:name>
|
||||
<gnome:userid>veillard</gnome:userid>
|
||||
</foaf:Person>
|
||||
</maintainer>
|
||||
</Project>
|
@ -62,7 +62,7 @@ extern "C" {
|
||||
*
|
||||
* Whether module support is configured into libxslt
|
||||
*/
|
||||
#if 0
|
||||
#if 1
|
||||
#ifndef WITH_MODULES
|
||||
#define WITH_MODULES
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user