You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Joe Schaefer <jo...@sunstarsys.com> on 2005/05/02 16:06:21 UTC

libapreq2-2.05-dev-rc2 release candidate #2

Please test and offer feedback on the second 
release candidate for libapreq2-2.05-dev.
The changes since 2.04-dev are too numerous 
to list in this email, so please read the 
CHANGES file in the tarball at

    http://people.apache.org/~joes/libapreq2-2.05-dev-rc2.tar.gz

Changes since rc1:

- Win32 build [Randy Kobes]
  Have top-level 'nmake', 'nmake test', and 'nmake install'
  targets, respectively, also include building, testing, and
  installing the corresponding perl glue targets.

- C API
  Minimum httpd version is now 2.0.48, which includes the official
  apr 0.9.4 release.

- C API [Max Kellermann]
  Fix apreq_quote.

-- 
Joe Schaefer

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Foo Ji-Haw <jh...@nexlabs.com>.
My thanks to the libapreq team for their time and effort on this. Much 
appreciated.

Joe Schaefer wrote:

>Please test and offer feedback on the second 
>release candidate for libapreq2-2.05-dev.
>The changes since 2.04-dev are too numerous 
>to list in this email, so please read the 
>CHANGES file in the tarball at
>
>    http://people.apache.org/~joes/libapreq2-2.05-dev-rc2.tar.gz
>
>  
>

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Joe Schaefer <jo...@sunstarsys.com>.
Joe Schaefer <jo...@sunstarsys.com> writes:

> Geoffrey Young <ge...@modperlcookbook.org> writes:

[...]

>> I just grabbed your key from pgp.mit.edu.  are you using a different
>> one? 
>
> F8B0462F is my apache signing key.  It should be both in httpd's
> dist/KEYS file and on pgp.mit.edu.

Hmm, pgp.mit.edu doesn't like my F8B0462F (sub?)key for some reason.  So 
I signed it with the other one also; please download the asc file again 
and see what happens.

-- 
Joe Schaefer


Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Joe Schaefer <jo...@sunstarsys.com>.
Geoffrey Young <ge...@modperlcookbook.org> writes:

[...]

> $ gpg --verify libapreq2-2.05-dev.tar.gz.asc
> gpg: Signature made Wed 04 May 2005 01:01:18 PM EDT using DSA key ID F8B0462F

[...]

> I just grabbed your key from pgp.mit.edu.  are you using a different one?

F8B0462F is my apache signing key.  It should be both in httpd's
dist/KEYS file and on pgp.mit.edu.  If you can't find it on the 
web, let me know and I'll try to add it to pgp.mit.edu.

-- 
Joe Schaefer

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Geoffrey Young <ge...@modperlcookbook.org>.
> Just rolled trunk as 2.05-dev to-be.  Committers please
> put some +1s down for this tarball + signature so I can
> announce the release tomorrow.  Thanks!
> 
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz

looks good :)

>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz.asc

I'm not very good with gpg, so I'm probably doing something wrong.

$ gpg --verify libapreq2-2.05-dev.tar.gz.asc
gpg: Signature made Wed 04 May 2005 01:01:18 PM EDT using DSA key ID F8B0462F
gpg: Can't check signature: public key not found
[geoff@jib src]$ gpg --list-keys joes@apache.org
pub  1024D/208F5064 2003-06-13 Joe Schaefer <jo...@sunstarsys.com>
uid                            Joe Schaefer <jo...@apache.org>
sub  1024g/ED4260B6 2003-06-13

I just grabbed your key from pgp.mit.edu.  are you using a different one?

--Geoff

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Thu, 5 May 2005, Geoffrey Young wrote:

> Randy Kobes wrote:
> > Unfortunately, I
> > missed one problem on Win32 in my earlier testing - the
> > subdirectory module/t/cgi-bin/ has to be created before
> > testing.
>
> I thought the cgi script(s?) were written out via t_write_perl_script()?
>
>   my $cgi = File::Spec->catfile(Apache::Test::vars('serverroot'),
>                                 qw(cgi-bin test_cgi.pl));
>
>
>   t_write_perl_script($cgi, <DATA>);
>
> so that should create t/cgi-bin.  unless you're talking about a different
> script, in which case the proper solution is to probably use
> t_write_perl_script() there as well.  but I don't immediately see what that
> would be...

Thanks for pointing that out, but unfortunately, that occurs
too late, at least in the way that I've built things on
Win32 - before that point, the test_cgi.exe executable is
built from module/test_cgi.c and placed under
module/t/cgi-bin/. I guess another alternative is to build
it under an existing directory and copy it afterwards; I'll
see which one is easier.

-- 
best regards,
randy

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Thu, 5 May 2005, Geoffrey Young wrote:

> Randy Kobes wrote:
> > Unfortunately, I
> > missed one problem on Win32 in my earlier testing - the
> > subdirectory module/t/cgi-bin/ has to be created before
> > testing.
>
> I thought the cgi script(s?) were written out via t_write_perl_script()?
>
>   my $cgi = File::Spec->catfile(Apache::Test::vars('serverroot'),
>                                 qw(cgi-bin test_cgi.pl));
>
>
>   t_write_perl_script($cgi, <DATA>);
>
> so that should create t/cgi-bin.  unless you're talking about a different
> script, in which case the proper solution is to probably use
> t_write_perl_script() there as well.  but I don't immediately see what that
> would be...

Thanks for pointing that out, but unfortunately, that occurs
too late, at least in the way that I've built things on
Win32 - before that point, the test_cgi.exe executable is
built from module/test_cgi.c and placed under
module/t/cgi-bin/. I guess another alternative is to build
it under an existing directory and copy it afterwards; I'll
see which one is easier.

-- 
best regards,
randy

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Geoffrey Young <ge...@modperlcookbook.org>.

Randy Kobes wrote:
> Unfortunately, I
> missed one problem on Win32 in my earlier testing - the
> subdirectory module/t/cgi-bin/ has to be created before
> testing.

I thought the cgi script(s?) were written out via t_write_perl_script()?

  my $cgi = File::Spec->catfile(Apache::Test::vars('serverroot'),
                                qw(cgi-bin test_cgi.pl));


  t_write_perl_script($cgi, <DATA>);

so that should create t/cgi-bin.  unless you're talking about a different
script, in which case the proper solution is to probably use
t_write_perl_script() there as well.  but I don't immediately see what that
would be...

--Geoff

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Geoffrey Young <ge...@modperlcookbook.org>.

Randy Kobes wrote:
> Unfortunately, I
> missed one problem on Win32 in my earlier testing - the
> subdirectory module/t/cgi-bin/ has to be created before
> testing.

I thought the cgi script(s?) were written out via t_write_perl_script()?

  my $cgi = File::Spec->catfile(Apache::Test::vars('serverroot'),
                                qw(cgi-bin test_cgi.pl));


  t_write_perl_script($cgi, <DATA>);

so that should create t/cgi-bin.  unless you're talking about a different
script, in which case the proper solution is to probably use
t_write_perl_script() there as well.  but I don't immediately see what that
would be...

--Geoff

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Thu, 5 May 2005, Joe Schaefer wrote:

> Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:
>
> > The signature checks out fine for me. Unfortunately, I
> > missed one problem on Win32 in my earlier testing - the
> > subdirectory module/t/cgi-bin/ has to be created before
> > testing. If it's not too late, I could commit this fix:
>
> No worries, but I think that'll have to wait til 2.06.
> The bird is already in flight, so at this point all we
> can do is scrap 2.05-dev if we're not happy with the tarball.

No problem - I think the majority of Win32 users use ppm
binary packages, which is unaffected by this. And for those
that do build it, the fix is easy - just create the
module/t/cgi-bin/ directory manually.

-- 
best regards,
randy

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Joe Schaefer <jo...@sunstarsys.com>.
Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:

> The signature checks out fine for me. Unfortunately, I
> missed one problem on Win32 in my earlier testing - the
> subdirectory module/t/cgi-bin/ has to be created before
> testing. If it's not too late, I could commit this fix:

No worries, but I think that'll have to wait til 2.06.  
The bird is already in flight, so at this point all we 
can do is scrap 2.05-dev if we're not happy with the tarball.

[...]

> However, I should have caught that before, so +1 if you'd
> rather go ahead with this release.

Thanks, Randy!
-- 
Joe Schaefer


Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Wed, 4 May 2005, Joe Schaefer wrote:

> Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:
>
> > On Mon, 2 May 2005, Joe Schaefer wrote:
> >
> >> Please test and offer feedback on the second
> >> release candidate for libapreq2-2.05-dev.
> >
> > Builds and tests fine on Win32. I've put up a Win32 ppm
> > package of this (libapreq2) at
> >    http://theoryx5.uwinnipeg.ca/ppms/
> > which requires the mod_perl ppm package (RC5) from the
> > same location.
>
> Just rolled trunk as 2.05-dev to-be.  Committers please
> put some +1s down for this tarball + signature so I can
> announce the release tomorrow.  Thanks!
>
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz.asc

The signature checks out fine for me. Unfortunately, I
missed one problem on Win32 in my earlier testing - the
subdirectory module/t/cgi-bin/ has to be created before
testing. If it's not too late, I could commit this fix:
==========================================================
Index: win32/test_cgi.mak
===================================================================
--- win32/test_cgi.mak	(revision 167861)
+++ win32/test_cgi.mak	(working copy)
@@ -51,7 +51,7 @@
 MODULE=$(APREQ_HOME)\module
 OUTDIR=$(CFG_HOME)\libs
 INTDIR=$(CFG_HOME)\libs
-
+CGIBIN=$(MODULE)\t\cgi-bin
 LINK32_OBJS= \
         "$(INTDIR)\test_cgi.obj" \
 	"$(OUTDIR)\libapreq2.lib" \
@@ -71,7 +71,7 @@
 BSC32=bscmake.exe
 BSC32_FLAGS=/nologo /o"$(OUTDIR)\test_cgi.bsc"
 LINK32=link.exe
-LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"$(OUTDIR)\test_cgi.pdb" /machine:I386 /out:"$(MODULE)\t\cgi-bin\test_cgi.exe"
+LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"$(OUTDIR)\test_cgi.pdb" /machine:I386 /out:"$(CGIBIN)\test_cgi.exe"

 !ELSEIF  "$(CFG)" == "test_cgi - Win32 Debug"

@@ -87,7 +87,7 @@
 BSC32=bscmake.exe
 BSC32_FLAGS=/nologo /o"$(OUTDIR)\test_cgi.bsc"
 LINK32=link.exe
-LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\test_cgi.pdb" /debug /machine:I386 /out:"$(MODULE)\t\cgi-bin\test_cgi.exe" /pdbtype:sept
+LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\test_cgi.pdb" /debug /machine:I386 /out:"$(CGIBIN)\test_cgi.exe" /pdbtype:sept

 !ENDIF

@@ -124,6 +124,7 @@
 <<

 "$(OUTDIR)\test_cgi.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+    if not exist "$(CGIBIN)/$(NULL)" mkdir "$(CGIBIN)"
     $(LINK32) @<<
   $(LINK32_FLAGS) $(LINK32_OBJS)
 <<

==================================================================

However, I should have caught that before, so +1 if you'd
rather go ahead with this release.

-- 
best regards,
randy

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Wed, 4 May 2005, Joe Schaefer wrote:

> Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:
>
> > On Mon, 2 May 2005, Joe Schaefer wrote:
> >
> >> Please test and offer feedback on the second
> >> release candidate for libapreq2-2.05-dev.
> >
> > Builds and tests fine on Win32. I've put up a Win32 ppm
> > package of this (libapreq2) at
> >    http://theoryx5.uwinnipeg.ca/ppms/
> > which requires the mod_perl ppm package (RC5) from the
> > same location.
>
> Just rolled trunk as 2.05-dev to-be.  Committers please
> put some +1s down for this tarball + signature so I can
> announce the release tomorrow.  Thanks!
>
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz.asc

The signature checks out fine for me. Unfortunately, I
missed one problem on Win32 in my earlier testing - the
subdirectory module/t/cgi-bin/ has to be created before
testing. If it's not too late, I could commit this fix:
==========================================================
Index: win32/test_cgi.mak
===================================================================
--- win32/test_cgi.mak	(revision 167861)
+++ win32/test_cgi.mak	(working copy)
@@ -51,7 +51,7 @@
 MODULE=$(APREQ_HOME)\module
 OUTDIR=$(CFG_HOME)\libs
 INTDIR=$(CFG_HOME)\libs
-
+CGIBIN=$(MODULE)\t\cgi-bin
 LINK32_OBJS= \
         "$(INTDIR)\test_cgi.obj" \
 	"$(OUTDIR)\libapreq2.lib" \
@@ -71,7 +71,7 @@
 BSC32=bscmake.exe
 BSC32_FLAGS=/nologo /o"$(OUTDIR)\test_cgi.bsc"
 LINK32=link.exe
-LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"$(OUTDIR)\test_cgi.pdb" /machine:I386 /out:"$(MODULE)\t\cgi-bin\test_cgi.exe"
+LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"$(OUTDIR)\test_cgi.pdb" /machine:I386 /out:"$(CGIBIN)\test_cgi.exe"

 !ELSEIF  "$(CFG)" == "test_cgi - Win32 Debug"

@@ -87,7 +87,7 @@
 BSC32=bscmake.exe
 BSC32_FLAGS=/nologo /o"$(OUTDIR)\test_cgi.bsc"
 LINK32=link.exe
-LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\test_cgi.pdb" /debug /machine:I386 /out:"$(MODULE)\t\cgi-bin\test_cgi.exe" /pdbtype:sept
+LINK32_FLAGS=kernel32.lib wsock32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\test_cgi.pdb" /debug /machine:I386 /out:"$(CGIBIN)\test_cgi.exe" /pdbtype:sept

 !ENDIF

@@ -124,6 +124,7 @@
 <<

 "$(OUTDIR)\test_cgi.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+    if not exist "$(CGIBIN)/$(NULL)" mkdir "$(CGIBIN)"
     $(LINK32) @<<
   $(LINK32_FLAGS) $(LINK32_OBJS)
 <<

==================================================================

However, I should have caught that before, so +1 if you'd
rather go ahead with this release.

-- 
best regards,
randy

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Eli Marmor <ma...@netmask.it>.
Joe Schaefer wrote:
> 
> Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:
> 
> > ...
> 
> Just rolled trunk as 2.05-dev to-be.  Committers please
> put some +1s down for this tarball + signature so I can
> announce the release tomorrow.  Thanks!
> 
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz
>     http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz.asc

I apologize if some of the following points were already discussed, but
I don't follow ALL the threads here, so I probably missed them:

1. Thanks for your great work!

2. "INSTALL" mentions files/directories which don't exist anymore. For
   example: the "src" and "env" directories (instead of "library" etc.)
   I think the problem exists in other files, so a global grep might be
   helpful.

3. Still no chance to run configure without the flags --with-apr-config
   and --with-apu-config (I tried it with a lot of Apache versions,
   from the earliest 2.1, till the current trunk. My OS is Mandrake
   8.1, but accessorized with the latest compilers, autoconf, etc.).

4. configure fails to find Apache/Test.pm in the @INC (Perl 5.6.1); Is
   a newer version of Perl is needed?

5. configure complains that "expr: syntax error"; Is it OK, or hints
   about a problem?

6. make complains that "libtool: link: CURRENT `' is not a nonnegative
   integer" and that "libtool: link: `:0:1' is not valid version
   information".

7. After commenting out the -version-info and its following arg in
   library/Makefile.in (to skip the previous problem), "make" succeeds,
   but then "make test" can't locate Apache/TestMM.pm in @INC (similar
   to problem #4).

8. Then "make install" doesn't understand the exact name of the module,
   which leads to strange complains like (in my own file system):
make[4]: *** No rule to make target
`modules/filters/libmod_/mnt/disk/c2/libapreq2-2.05-dev/module/apache2/filter.c.la',
needed by `httpd'.  Stop.

9. There were more problems, in later phases (the running), but let's
   guess that they were the result of the above problems and ignore
   them for the moment.

After bypassing all of that, I succeeded to use it, so I can witness
that it's great, but hope that my comments will help to improve it even
further.

Thanks,
-- 
Eli Marmor
marmor@netmask.it
Netmask (El-Mar) Internet Technologies Ltd.
__________________________________________________________
Tel.:   +972-9-766-1020          8 Yad-Harutzim St.
Fax.:   +972-9-766-1314          P.O.B. 7004
Mobile: +972-50-5237338          Kfar-Saba 44641, Israel

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Joe Schaefer <jo...@sunstarsys.com>.
Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:

> On Mon, 2 May 2005, Joe Schaefer wrote:
>
>> Please test and offer feedback on the second
>> release candidate for libapreq2-2.05-dev.
>
> Builds and tests fine on Win32. I've put up a Win32 ppm
> package of this (libapreq2) at
>    http://theoryx5.uwinnipeg.ca/ppms/
> which requires the mod_perl ppm package (RC5) from the
> same location.

Just rolled trunk as 2.05-dev to-be.  Committers please
put some +1s down for this tarball + signature so I can
announce the release tomorrow.  Thanks!

    http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz
    http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz.asc

-- 
Joe Schaefer


Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Joe Schaefer <jo...@sunstarsys.com>.
Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:

> On Mon, 2 May 2005, Joe Schaefer wrote:
>
>> Please test and offer feedback on the second
>> release candidate for libapreq2-2.05-dev.
>
> Builds and tests fine on Win32. I've put up a Win32 ppm
> package of this (libapreq2) at
>    http://theoryx5.uwinnipeg.ca/ppms/
> which requires the mod_perl ppm package (RC5) from the
> same location.

Just rolled trunk as 2.05-dev to-be.  Committers please
put some +1s down for this tarball + signature so I can
announce the release tomorrow.  Thanks!

    http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz
    http://people.apache.org/~joes/libapreq2-2.05-dev.tar.gz.asc

-- 
Joe Schaefer


Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Mon, 2 May 2005, Joe Schaefer wrote:

> Please test and offer feedback on the second
> release candidate for libapreq2-2.05-dev.

Builds and tests fine on Win32. I've put up a Win32 ppm
package of this (libapreq2) at
   http://theoryx5.uwinnipeg.ca/ppms/
which requires the mod_perl ppm package (RC5) from the
same location.

-- 
best regards,
randy kobes

Re: libapreq2-2.05-dev-rc2 release candidate #2

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Mon, 2 May 2005, Joe Schaefer wrote:

> Please test and offer feedback on the second
> release candidate for libapreq2-2.05-dev.

Builds and tests fine on Win32. I've put up a Win32 ppm
package of this (libapreq2) at
   http://theoryx5.uwinnipeg.ca/ppms/
which requires the mod_perl ppm package (RC5) from the
same location.

-- 
best regards,
randy kobes