The first patch in module/perl5/perl5.m4 is fixed... it was a typo nobody has found before. AC_ARG_WITH(perl5, [ --with-perl5 Set location of Perl executable],[ PERLBIN="$withval"], [PERLBIN=yes])
The fix for PYLIB should not be needed... and then PYLIB should be a directory... not a file. Could you try the latest cvs again? /Christian > -----Ursprungligt meddelande----- > Från: [EMAIL PROTECTED] [mailto:owfs- > [EMAIL PROTECTED] För Brad Clements > Skickat: den 17 oktober 2006 17:46 > Till: [email protected] > Ämne: [Owfs-developers] configure changes for Python in 2.5p4 > > Here's a patch for configure. For some reason PERL options is still using > --with-python switch, and also, its not possible to specify PYLIB on > configure > command line. > > I'm not really sure how to properly fix configure. > > Here's my command line: > > ./configure_fixed --disable-owphp --disable-owperl --with- > python=/usr/local/bin/python2.4 > PYLIB=/usr/local/lib/python2.4/config/libpython2.4.a > > > And here's a context diff I needed to make the above work. > > > *** ./configure 2006-10-04 23:05:53.000000000 -0400 > --- ./configure_fixed 2006-10-16 22:05:58.000000000 -0400 > *************** > *** 22008,22015 **** > #AS_HELP_STRING([--with-perl5=path], [Set location of Perl5 > executable]),[ PERLBIN="$withval"], [PERLBIN=yes]) > > # Check whether --with-python or --without-python was given. > ! if test "${with_python+set}" = set; then > ! withval="$with_python" > PERLBIN="$withval" > else > PERLBIN=yes > --- 22008,22015 ---- > #AS_HELP_STRING([--with-perl5=path], [Set location of Perl5 > executable]),[ PERLBIN="$withval"], [PERLBIN=yes]) > > # Check whether --with-python or --without-python was given. > ! if test "${with_perl+set}" = set; then > ! withval="$with_perl" > PERLBIN="$withval" > else > PERLBIN=yes > *************** > *** 22487,22493 **** > #---------------------------------------------------------------- > > PYINCLUDE= > ! PYLIB= > PYPACKAGE= > > #AC_ARG_WITH(python, AS_HELP_STRING([--without-python], [Disable > Python]) > --- 22487,22493 ---- > #---------------------------------------------------------------- > > PYINCLUDE= > ! #PYLIB= > PYPACKAGE= > > #AC_ARG_WITH(python, AS_HELP_STRING([--without-python], [Disable > Python]) > > > > -- > Brad Clements, [EMAIL PROTECTED] (315)268-1000 > http://www.murkworks.com > AOL-IM or SKYPE: BKClements > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
