I took a look at this myself, since I have the same problem. There's a ":" on line 2106 of configure:
...
if `perl -e "require XML::Parser" 2>/dev/null`; then
:
else
{ { echo "$as_me:$LINENO: error: XML::Parser perl module is required for int$
echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;}
{ (exit 1); exit 1; }; }
fi
...


Changing this to an echo resulted in successful completion of ./configure .

if `perl -e "require XML::Parser" 2>/dev/null`; then
echo foo
else
{ { echo "$as_me:$LINENO: error: XML::Parser perl module is required for int$
echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;}
{ (exit 1); exit 1; }; }
fi
...




On Feb 17, 2004, at 10:34 PM, Peter O'Gorman wrote:

I don't understand this at all.

I assume that you are building it by typing 'fink install inkscape' on the command line? If you are using FinkCommander, please try doing it in a terminal.

Anyway, please send me your /sw/src/inkscape-0.37-11/inkscape-0.37/config.log in a private mail.

Thanks,
Peter
--
Peter O'Gorman - http://www.pogma.com


--
Alexander Hansen
Fink Documentarian
[Day Job] Levitated Dipole Experiment
http://www.psfc.mit.edu/LDX



-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
Fink-beginners mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-beginners

Reply via email to