Re: [xslt] still problems with python bindings



On Tue, Feb 25, 2003 at 02:05:29PM +0100, Markus Jais wrote:
> hello
> 
> I checked the problem with the new version 1.0.27 and still
> the same problem.

  Apply the enclosed patch and regenerate the configure with
autogen.sh .

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/
Index: configure.in
===================================================================
RCS file: /cvs/gnome/libxslt/configure.in,v
retrieving revision 1.117
diff -c -r1.117 configure.in
*** configure.in	24 Feb 2003 21:22:52 -0000	1.117
--- configure.in	25 Feb 2003 14:50:01 -0000
***************
*** 153,164 ****
  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"
      then
!         echo Found python in $with_python
!         PYTHON="$with_python"
      else
! 	AC_PATH_PROG(PYTHON, python python2.2 python2.1 python2.0 python1.6 python1.5)
      fi
      if test "$PYTHON" != ""
      then
--- 153,170 ----
  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/bin/python"
      then
!         echo Found python in $with_python/bin/python
!         PYTHON="$with_python/bin/python"
      else
! 	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


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