RE: please update libXML

2002-06-18 Thread Peter Ring
./configure --with-history # or ./configure --with-history --with-python make ... make[3]: Entering directory `/usr/local/src/libxml2-2.4.22/python' ... /bin/bash ../libtool --mode=link gcc -g -O2 -Wall -o libxml2mod.la -rpath /usr/local/lib/python2.2/site-packages -module -avoid-version

Re: please update libXML

2002-06-18 Thread Nicholas Wourms
Peter, The line should be -L/usr/lib -lpython2.2 Cheers, Nicholas Peter Ring wrote: ./configure --with-history # or ./configure --with-history --with-python make ... make[3]: Entering directory `/usr/local/src/libxml2-2.4.22/python' ... /bin/bash ../libtool --mode=link gcc -g -O2 -Wall

Re: please update libXML

2002-06-18 Thread Nicholas Wourms
Peter, The line should be -L/usr/lib -lpython2.2 ^^ Ooops That should be: -L/usr/lib/python2.2/config/ Cheers, Nicholas Peter Ring wrote: ./configure --with-history # or ./configure --with-history --with-python make ... make[3]: Entering directory

Re: Apache -5 install clobbers /etc/apache files

2002-06-18 Thread Stipe Tolj
Charles Wilson wrote: Gerrit P. Haase wrote: All my files in /etc/apache (besides httpd.conf~) were clobbered when installing 1.13.24-5 over 1.13.24-1. How can this happen??? To be exact, the -1 version removed it during uninstall. Well, shit happens No, this is a packaging

Re: Apache -5 install clobbers /etc/apache files

2002-06-18 Thread Stipe Tolj
Gerrit P. Haase wrote: Hallo Stipe, GR!!! *stipe is offering a refreshing cool bear as excuse* Sorry, Gerrit. [EMAIL PROTECTED] --- Wapme Systems AG Vogelsanger Weg 80 40470 Düsseldorf

Re: please update libXML

2002-06-18 Thread Gerrit P. Haase
Robert schrieb: Now if only I could also link with python ... Hmm, I added -lpython2.2 to the linkline for the module and I thought it worked (at least for libxml2, I'm not sure about libxslt), this is also in my patch included. Gerrit, could you please give me a patch for the

Re: Apache -5 install clobbers /etc/apache files

2002-06-18 Thread Gerrit P. Haase
Stipe schrieb: Charles Wilson wrote: Gerrit P. Haase wrote: All my files in /etc/apache (besides httpd.conf~) were clobbered when installing 1.13.24-5 over 1.13.24-1. How can this happen??? To be exact, the -1 version removed it during uninstall. Well, shit happens No,

RE: please update libXML

2002-06-18 Thread Norman Vine
Gerrit P. Haase writes: Robert schrieb: Gerrit, could you please give me a patch for the current libxml | libxslt source packages to get the python modules going? I'd love to get that working, and would get it incorporated upstream. With the fix of Nicholas now, the latest version (of my

Re: Setup-2.249.2.3 and download incomplete and popt and libpopt0

2002-06-18 Thread Brian Keener
Robert Collins wrote: mirrors.rcn.net + another mirror site - in the mirror selection box. Setup will not download anything already in your mirrors.rcn.net directory cache, but will failover to other mirrors automatically if mirrors.rcn.net has trouble. I'm gonna step out on a limb here and

Re: Setup-2.249.2.3 and download incomplete and popt and libpopt0

2002-06-18 Thread Christopher Faylor
On Tue, Jun 18, 2002 at 01:34:20PM -0400, Brian Keener wrote: Robert Collins wrote: mirrors.rcn.net + another mirror site - in the mirror selection box. Setup will not download anything already in your mirrors.rcn.net directory cache, but will failover to other mirrors automatically if

Re: RFD: gettext, iconv, packaging...

2002-06-18 Thread Charles Wilson
FYI, the new gettext package is NOT imminent. There are some variables exported from cyggettext*.dll to the msg*.exe programs that are not auto-importable. (direct access to elements in an array of structs). So, I need to muck with the code some -- and add accessor functions or something.

Re: RFD: gettext, iconv, packaging...

2002-06-18 Thread Corinna Vinschen
On Tue, Jun 18, 2002 at 02:25:59PM -0400, Charles Wilson wrote: FYI, the new gettext package is NOT imminent. There are some variables exported from cyggettext*.dll to the msg*.exe programs that are not auto-importable. (direct access to elements in an array of structs). So, I need to

Re: RFD: gettext, iconv, packaging...

2002-06-18 Thread Charles Wilson
Corinna Vinschen wrote: If only these two tools are using cyggettext*.dll and the other one, why not linking statically against them? I don't see a reason to have dlls hanging around for that purpose. No, you got it backwards. There are only two programs -- the two MAIN programs

Re: RFD: gettext, iconv, packaging...

2002-06-18 Thread Charles Wilson
Nicholas Wourms wrote: Is xgettext.exe included or has that been phased out? xgettext.exe is considered one of the development oriented tools, not end user tools. So it's in the gettext-tools package (which I'm calling gettext-devel). --Chuck

RE: please update libXML

2002-06-18 Thread Robert Collins
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Norman Vine Sent: Wednesday, 19 June 2002 2:24 AM Here are some Python 'one-liners' that can be incorporated into the configure process or a Makefile to get the local Python Installation

Re: RFD: gettext, iconv, packaging...

2002-06-18 Thread Charles Wilson
Gerrit P. Haase wrote: :-) Great. Well, I don't like the part about 'whining', but all the rest is great. Ok. I'll take the two packages if no one steps on my toes now... Cool. I didn't mean that you, in particular, *must* take these two packages or I won't do libiconv. It's just

RE: please update libXML

2002-06-18 Thread Peter Ring
libxslt also links against libpython and libxml2 I added to mylibs in libxslt-1.0.18/python/Makefile.am: -lxml2 -L/usr/lib/python2.2/config -lpython2.2 There are still some issues, though. I didn't get the python bindings for libxml2 and libxslt installed without some messing around. Part