mirror of
https://github.com/darlinghq/darling-libxslt.git
synced 2024-12-02 08:56:24 +00:00
a bit of cleanup and a extra variable for CVS dist Daniel
* Makefile.am configure.in: a bit of cleanup and a extra variable for CVS dist Daniel
This commit is contained in:
parent
bc33d7861b
commit
6785a482db
@ -1,3 +1,8 @@
|
||||
Fri Aug 20 18:53:50 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* Makefile.am configure.in: a bit of cleanup and a extra variable for
|
||||
CVS dist
|
||||
|
||||
Fri Aug 20 11:30:19 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* libxslt/imports.c: fix a 64bit bug reported by Andreas Schwab
|
||||
|
@ -19,7 +19,8 @@ dist-hook: cleanup libxslt.spec
|
||||
EXTRA_DIST = xsltConf.sh.in xslt-config.in libxslt.spec libxslt.spec.in \
|
||||
FEATURES TODO Copyright libxslt.m4 \
|
||||
win32/libxslt/libxslt.def win32/libxslt/libxslt.dsw \
|
||||
win32/libxslt/libxslt_so.dsp win32/libxslt/xsltproc.dsp
|
||||
win32/libxslt/libxslt_so.dsp win32/libxslt/xsltproc.dsp \
|
||||
$(CVS_EXTRA_DIST)
|
||||
|
||||
## We create xsltConf.sh here and not from configure because we want
|
||||
## to get the paths expanded correctly. Macros like srcdir are given
|
||||
|
@ -24,7 +24,12 @@ LIBXSLT_VERSION_INFO=`expr $LIBXSLT_MAJOR_VERSION + $LIBXSLT_MINOR_VERSION`:$LIB
|
||||
LIBXSLT_VERSION_NUMBER=`expr $LIBXSLT_MAJOR_VERSION \* 10000 + $LIBXSLT_MINOR_VERSION \* 100 + $LIBXSLT_MICRO_VERSION`
|
||||
|
||||
if test -f CVS/Entries; then
|
||||
LIBXSLT_VERSION_EXTRA=-CVS`grep ChangeLog CVS/Entries | sed -e s\%/ChangeLog/1\.%% -e s\%/.*$%%`
|
||||
extra=`grep ChangeLog CVS/Entries | grep -v LIBXSLT | sed -e s\%/ChangeLog/1\.%% -e s\%/.*$%%`
|
||||
echo extra=$extra
|
||||
if test "$extra" != ""
|
||||
then
|
||||
LIBXSLT_VERSION_EXTRA="-CVS$extra"
|
||||
fi
|
||||
fi
|
||||
|
||||
AC_SUBST(LIBXSLT_MAJOR_VERSION)
|
||||
|
@ -44,7 +44,7 @@ extern "C" {
|
||||
*
|
||||
* extra version information, used to show a CVS compilation
|
||||
*/
|
||||
#define LIBXML_VERSION_EXTRA "-CVS932"
|
||||
#define LIBXML_VERSION_EXTRA "-CVS933"
|
||||
|
||||
/**
|
||||
* WITH_XSLT_DEBUG:
|
||||
|
Loading…
Reference in New Issue
Block a user