Re: [xslt] 1.0.27 patches



On Tue, Mar 25, 2003 at 05:15:37PM -0600, Albert Chin wrote:
> 1. Properly work when trio is needed. Note you need to drop in trio.h
>    and triodef.h into the libxslt directory.

  Okay applied

> 2. Sync Python detection with libxml 2.5.5.

  Hum, that part got rejected, it was already there...
I assume you didn't upgrade first to libxslt-1.0.28 .

> --- configure.in.orig	Mon Mar 24 00:22:24 2003
> +++ configure.in	Tue Mar 25 16:24:52 2003
> @@ -153,12 +153,18 @@
>  PYTHON_SITE_PACKAGES=
>  AC_ARG_WITH(python, [  --with-python[=DIR]    Build Python bindings if found])
>  if test "$with_python" != "no" ; then
> -    if test -x "$with_python"
> +    if test -x "$with_python/bin/python"
>      then
> -        echo Found python in $with_python
> -        PYTHON="$with_python"
> +        echo Found python in $with_python/bin/python
> +        PYTHON="$with_python/bin/python"
>      else
> -	AC_PATH_PROG(PYTHON, python python2.2 python2.1 python2.0 python1.6 python1.5)
> +	if test -x "$with_python"
> +	then
> +	    echo Found python in $with_python
> +	    PYTHON="$with_python"
> +	else
> +	    AC_PATH_PROG(PYTHON, python python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
> +	fi
>      fi
>      if test "$PYTHON" != ""
>      then

Hum the following part applied but why removing it ?

> @@ -405,12 +411,6 @@
>  AC_SUBST(PYTHON_SITE_PACKAGES)
>  
>  XSLT_LIBDIR='-L${libdir}'
> -
> -case ${host} in
> -    *-*-solaris*)
> -        XSLT_LIBDIR="${XSLT_LIBDIR} -R${libdir}"
> -	;;
> -esac
>  
>  XSLT_INCLUDEDIR='-I${includedir}'
>  XSLT_LIBS="-lxslt $LIBXML_LIBS $M_LIBS"

  thanks,

Daniel

-- 
Daniel Veillard      | Red Hat Network https://rhn.redhat.com/
veillard@redhat.com  | libxml GNOME XML XSLT toolkit  http://xmlsoft.org/
http://veillard.com/ | Rpmfind RPM search engine http://rpmfind.net/



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]