--------Daniel Morissette <dmorisse...@mapgears.com> wrote--------
Subject: Re: [mapserver-users] MapServer 6.0.0-beta4 release
Date: 02.04.2011 22:13


Hi, Daniel
>On 11-03-31 04:38 AM, Peter Hopfgartner wrote:
>>
>> Looking at ./configure, around line 12710, the tests look like:
>>
>>    test -f $XSLT_DIR/include/libxslt/xslt.h&& 
>XSLT_INCDIR="$XSLT_DIR/include"
>>    test -f $XSLT_DIR/lib/libxslt.so&&  XSLT_LIBDIR="$XSLT_DIR/lib"
>>
>> Anyway, on a pure 64 bit machine, there won't be any lib/libxslt.so,
>but a lib64/libxslt.so. Indeed, changing this to lib64 it configures fine
>on my machine.
>>
>
>Thanks for the report. I have fixed this in SVN trunk r11448. The fix 
>will be in the next beta.

I guess that the same fix might be applied for libexslt, too.

>
>Daniel
>
>-- 
>Daniel Morissette
>http://www.mapgears.com/
>Provider of Professional MapServer Support since 2000
>

Peter
 
R3 GIS Srl - GmbH
http://www.r3-gis.com
Index: configure.in
===================================================================
--- configure.in	(revision 11473)
+++ configure.in	(working copy)
@@ -2116,6 +2116,7 @@
 
   test -f $EXSLT_DIR/include/libexslt/exslt.h && EXSLT_INCDIR="$EXSLT_DIR/include"
   test -f $EXSLT_DIR/lib/libexslt.so && EXSLT_LIBDIR="$EXSLT_DIR/lib"
+  test -f $EXSLT_DIR/lib64/libexslt.so && EXSLT_LIBDIR="$EXSLT_DIR/lib"
 
   if test -n "$EXSLT_LIBDIR" -a -n "$EXSLT_INCDIR" ; then
     dnl
_______________________________________________
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Reply via email to