git setup

* configure.in: adapt the extra version detection code to git
* libxslt.doap: adding RDF dope file
Daniel
This commit is contained in:
veillard 2009-05-12 09:04:37 +02:00
parent cc8f0964b2
commit e502173b7a
4 changed files with 33 additions and 1 deletions

View File

@ -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

View File

@ -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
View 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>

View File

@ -62,7 +62,7 @@ extern "C" {
*
* Whether module support is configured into libxslt
*/
#if 0
#if 1
#ifndef WITH_MODULES
#define WITH_MODULES
#endif