You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Yoav Shapira <yo...@apache.org> on 2006/03/15 20:05:42 UTC

[VOTE][RESULT] Tomcat v5.5.16 Stability

The Apache Tomcat Team has voted to certify v5.5.16 as stable. 
Binding +1 votes were cast by Mladen Turk, Peter Rossbach, Remy
Maucherat, Henri Gomez, Jeanfrancois Arcand, and myself.

The web site will be updated shortly to reflect the result of this
vote.  You can also inspect the:

Release Notes: http://tomcat.apache.org/tomcat-5.5-doc/RELEASE-NOTES

Change Log: http://tomcat.apache.org/tomcat-5.5-doc/changelog.html

Downloads: http://tomcat.apache.org/download-55.cgi

Thank you,

The Apache Tomcat Team

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Remy Maucherat <re...@apache.org>.
Mladen Turk wrote:
> Yoav Shapira wrote:
>  > The Apache Tomcat Team has voted to certify v5.5.16 as stable.
>  > Binding +1 votes were cast by Mladen Turk, Peter Rossbach, Remy
>  > Maucherat, Henri Gomez, Jeanfrancois Arcand, and myself.
>  >
> 
> Just figured out that the 5.5.16 was shipped with tomcat-native-1.1.1,
> and it should be 1.1.2.
> 
> How should we resolve that? By repacking or releasing 5.5.17
> I'm in favor of second.

Neither. People will figure it out if they are interested.

Rémy


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Henri Gomez <he...@gmail.com>.
2006/3/16, Bill Barker <wb...@wilshire.com>:
>
>
> > -----Original Message-----
> > From: Henri Gomez [mailto:henri.gomez@gmail.com]
> > Sent: Thursday, March 16, 2006 6:40 AM
> > To: Tomcat Developers List
> > Subject: Re: [VOTE][RESULT] Tomcat v5.5.16 Stability
> >
> > for Linux (Suse SLES 9 PPC and i386)
> >
> > to build APR 1.2.2 with static support I used :
> >
> > ./configure --with-pic --prefix=/root/local
> >
>
> If you include '--disable-shared', then APR will only build the .a, so that
> is all that tcnative will have a choice to link to.


Great

> > For tcnative I used :
> >
> > ./configure --with-apr=/root/local/bin/apr-1-config
> >
> > Then I change the Makefile like this :
> >
> > $(TARGET_LIB): $(OBJECTS)
> >         $(LINK) -rpath $(libdir) $(OBJECTS)
> > /root/local/lib/libapr-1.a -lrt -lcrypt  -lpthread -ldl -lssl -lcrypto
> >
> > Even when build with static support, the APR apr-config (apr-1-config
> > here) didn't provide the   /root/local/lib/libapr-1.a ;(
> >
> > 2006/3/16, Peter Rossbach <pr...@objektpark.de>:
> > > I also can't find apr static link command for MAC OS X. At MAC OS X
> > > the tcnative library´suffix must be jnilib instead dylib. How I can
> > > change this?
> > >
> > > peter
> > >
> > >
> > >
> > > Am 16.03.2006 um 15:15 schrieb Henri Gomez:
> > >
> > > > 2006/3/16, Mladen Turk <mt...@apache.org>:
> > > >> Henri Gomez wrote:
> > > >>>
> > > >>> We could comment how to build an APR 1.2.2 ready for static
> > > >>> inclusion (easy).
> > > >>> But the configure/makefile of tcnative should be adapted
> > > >>>
> > > >>
> > > >> You have the commit rights, so what's the problem :)
> > > >
> > > > One problems :
> > > >
> > > > - How to get the correct link command from apr-config
> > when APR want to
> > > > be used statically. I've got it for Linux but what about
> > AIX / HPUX /
> > > > Solaris. Send questions on apr-dev but still not response.
> > > >
> > > >
> > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > > > For additional commands, e-mail: dev-help@tomcat.apache.org
> > > >
> > > >
> > >
> > >
> > >
> > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > > For additional commands, e-mail: dev-help@tomcat.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: dev-help@tomcat.apache.org
> >
> >
> >
>
>
>
> This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or distribute this message or any attachment. If you received this communication in error, please notify us immediately by e-mail and then delete all copies of this message and any attachments.
>
> In addition you should be aware that ordinary (unencrypted) e-mail sent through the Internet is not secure. Do not send confidential or sensitive information, such as social security numbers, account numbers, personal identification numbers and passwords, to us via ordinary (unencrypted) e-mail.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


RE: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Bill Barker <wb...@wilshire.com>.
 

> -----Original Message-----
> From: Henri Gomez [mailto:henri.gomez@gmail.com] 
> Sent: Thursday, March 16, 2006 6:40 AM
> To: Tomcat Developers List
> Subject: Re: [VOTE][RESULT] Tomcat v5.5.16 Stability
> 
> for Linux (Suse SLES 9 PPC and i386)
> 
> to build APR 1.2.2 with static support I used :
> 
> ./configure --with-pic --prefix=/root/local
> 

If you include '--disable-shared', then APR will only build the .a, so that
is all that tcnative will have a choice to link to.

> For tcnative I used :
> 
> ./configure --with-apr=/root/local/bin/apr-1-config
> 
> Then I change the Makefile like this :
> 
> $(TARGET_LIB): $(OBJECTS)
>         $(LINK) -rpath $(libdir) $(OBJECTS)  
> /root/local/lib/libapr-1.a -lrt -lcrypt  -lpthread -ldl -lssl -lcrypto
> 
> Even when build with static support, the APR apr-config (apr-1-config
> here) didn't provide the   /root/local/lib/libapr-1.a ;(
> 
> 2006/3/16, Peter Rossbach <pr...@objektpark.de>:
> > I also can't find apr static link command for MAC OS X. At MAC OS X
> > the tcnative library´suffix must be jnilib instead dylib. How I can
> > change this?
> >
> > peter
> >
> >
> >
> > Am 16.03.2006 um 15:15 schrieb Henri Gomez:
> >
> > > 2006/3/16, Mladen Turk <mt...@apache.org>:
> > >> Henri Gomez wrote:
> > >>>
> > >>> We could comment how to build an APR 1.2.2 ready for static
> > >>> inclusion (easy).
> > >>> But the configure/makefile of tcnative should be adapted
> > >>>
> > >>
> > >> You have the commit rights, so what's the problem :)
> > >
> > > One problems :
> > >
> > > - How to get the correct link command from apr-config 
> when APR want to
> > > be used statically. I've got it for Linux but what about 
> AIX / HPUX /
> > > Solaris. Send questions on apr-dev but still not response.
> > >
> > > 
> ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > > For additional commands, e-mail: dev-help@tomcat.apache.org
> > >
> > >
> >
> >
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: dev-help@tomcat.apache.org
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
> 
> 
> 



This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or distribute this message or any attachment. If you received this communication in error, please notify us immediately by e-mail and then delete all copies of this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through the Internet is not secure. Do not send confidential or sensitive information, such as social security numbers, account numbers, personal identification numbers and passwords, to us via ordinary (unencrypted) e-mail.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Henri Gomez <he...@gmail.com>.
for Linux (Suse SLES 9 PPC and i386)

to build APR 1.2.2 with static support I used :

./configure --with-pic --prefix=/root/local

For tcnative I used :

./configure --with-apr=/root/local/bin/apr-1-config

Then I change the Makefile like this :

$(TARGET_LIB): $(OBJECTS)
        $(LINK) -rpath $(libdir) $(OBJECTS)  
/root/local/lib/libapr-1.a -lrt -lcrypt  -lpthread -ldl -lssl -lcrypto

Even when build with static support, the APR apr-config (apr-1-config
here) didn't provide the   /root/local/lib/libapr-1.a ;(

2006/3/16, Peter Rossbach <pr...@objektpark.de>:
> I also can't find apr static link command for MAC OS X. At MAC OS X
> the tcnative library´suffix must be jnilib instead dylib. How I can
> change this?
>
> peter
>
>
>
> Am 16.03.2006 um 15:15 schrieb Henri Gomez:
>
> > 2006/3/16, Mladen Turk <mt...@apache.org>:
> >> Henri Gomez wrote:
> >>>
> >>> We could comment how to build an APR 1.2.2 ready for static
> >>> inclusion (easy).
> >>> But the configure/makefile of tcnative should be adapted
> >>>
> >>
> >> You have the commit rights, so what's the problem :)
> >
> > One problems :
> >
> > - How to get the correct link command from apr-config when APR want to
> > be used statically. I've got it for Linux but what about AIX / HPUX /
> > Solaris. Send questions on apr-dev but still not response.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: dev-help@tomcat.apache.org
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Yoav Shapira <yo...@apache.org>.
Separate thread, perhaps for this technical discussion?

(The [VOTE] and [VOTE][RESULT] threads have significant historical
value for readers and researchers, I like to keep them as on-topic as
possible)  Thanks,

Yoav

On 3/16/06, Peter Rossbach <pr...@objektpark.de> wrote:
> I also can't find apr static link command for MAC OS X. At MAC OS X
> the tcnative library´suffix must be jnilib instead dylib. How I can
> change this?
>
> peter
>
>
>
> Am 16.03.2006 um 15:15 schrieb Henri Gomez:
>
> > 2006/3/16, Mladen Turk <mt...@apache.org>:
> >> Henri Gomez wrote:
> >>>
> >>> We could comment how to build an APR 1.2.2 ready for static
> >>> inclusion (easy).
> >>> But the configure/makefile of tcnative should be adapted
> >>>
> >>
> >> You have the commit rights, so what's the problem :)
> >
> > One problems :
> >
> > - How to get the correct link command from apr-config when APR want to
> > be used statically. I've got it for Linux but what about AIX / HPUX /
> > Solaris. Send questions on apr-dev but still not response.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: dev-help@tomcat.apache.org
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>


--
Yoav Shapira
Nimalex LLC
1 Mifflin Place, Suite 310
Cambridge, MA, USA
yoavs@computer.org / www.yoavshapira.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Peter Rossbach <pr...@objektpark.de>.
I also can't find apr static link command for MAC OS X. At MAC OS X  
the tcnative library´suffix must be jnilib instead dylib. How I can  
change this?

peter



Am 16.03.2006 um 15:15 schrieb Henri Gomez:

> 2006/3/16, Mladen Turk <mt...@apache.org>:
>> Henri Gomez wrote:
>>>
>>> We could comment how to build an APR 1.2.2 ready for static  
>>> inclusion (easy).
>>> But the configure/makefile of tcnative should be adapted
>>>
>>
>> You have the commit rights, so what's the problem :)
>
> One problems :
>
> - How to get the correct link command from apr-config when APR want to
> be used statically. I've got it for Linux but what about AIX / HPUX /
> Solaris. Send questions on apr-dev but still not response.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Henri Gomez <he...@gmail.com>.
2006/3/16, Mladen Turk <mt...@apache.org>:
> Henri Gomez wrote:
> >
> > We could comment how to build an APR 1.2.2 ready for static inclusion (easy).
> > But the configure/makefile of tcnative should be adapted
> >
>
> You have the commit rights, so what's the problem :)

One problems :

- How to get the correct link command from apr-config when APR want to
be used statically. I've got it for Linux but what about AIX / HPUX /
Solaris. Send questions on apr-dev but still not response.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Mladen Turk <mt...@apache.org>.
Henri Gomez wrote:
> 
> We could comment how to build an APR 1.2.2 ready for static inclusion (easy).
> But the configure/makefile of tcnative should be adapted
>

You have the commit rights, so what's the problem :)

Cheers,
Mladen.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Henri Gomez <he...@gmail.com>.
2006/3/16, Remy Maucherat <re...@apache.org>:
> Henri Gomez wrote:
> > There is also something to add in tcnative, the support of static link with APR.
> >
> > Many Linux distributions still provided Apache 2.0.x and APR 0.9.x and
> > as such people couldn't use tcnative against APR 0.9.x.
>
> We're never going to support APR 0.9.

That's why we should provide a way to build tcnative linked statically
against another APR.

We could comment how to build an APR 1.2.2 ready for static inclusion (easy).

But the configure/makefile of tcnative should be adapted

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Remy Maucherat <re...@apache.org>.
Henri Gomez wrote:
> There is also something to add in tcnative, the support of static link with APR.
> 
> Many Linux distributions still provided Apache 2.0.x and APR 0.9.x and
> as such people couldn't use tcnative against APR 0.9.x.

We're never going to support APR 0.9.

Rémy


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Henri Gomez <he...@gmail.com>.
There is also something to add in tcnative, the support of static link with APR.

Many Linux distributions still provided Apache 2.0.x and APR 0.9.x and
as such people couldn't use tcnative against APR 0.9.x.


2006/3/16, Henri Gomez <he...@gmail.com>:
> And for the majority of users the 1.1.1 sources are useless, they want
> and use 1.1.2 binaries provided by Mladen :)
>
> 2006/3/16, Mladen Turk <mt...@apache.org>:
> > Yoav Shapira wrote:
> > > Hola,
> > > The one thing I don't want to do is repackage 5.5.16.  The do nothing
> > > option is viable, as is just sending a message (ideally a response to
> > > my stable vote announcement) to the mailing lists saying "by the way,
> > > it's stable but it has native 1.1.1 just fyi."  If you want to build
> > > just native 1.1.2 and post it on the download page as a small separate
> > > binary, that's fine by me as well...
> > >
> >
> > We'll have a zillion of: "it doesn't work" on the user list ;).
> > But like Remy said, a note should be fine, but it should go as
> > a simple note on the web site and README in the FTP.
> >
> > Regards,
> > Mladen.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: dev-help@tomcat.apache.org
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Henri Gomez <he...@gmail.com>.
And for the majority of users the 1.1.1 sources are useless, they want
and use 1.1.2 binaries provided by Mladen :)

2006/3/16, Mladen Turk <mt...@apache.org>:
> Yoav Shapira wrote:
> > Hola,
> > The one thing I don't want to do is repackage 5.5.16.  The do nothing
> > option is viable, as is just sending a message (ideally a response to
> > my stable vote announcement) to the mailing lists saying "by the way,
> > it's stable but it has native 1.1.1 just fyi."  If you want to build
> > just native 1.1.2 and post it on the download page as a small separate
> > binary, that's fine by me as well...
> >
>
> We'll have a zillion of: "it doesn't work" on the user list ;).
> But like Remy said, a note should be fine, but it should go as
> a simple note on the web site and README in the FTP.
>
> Regards,
> Mladen.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Yoav Shapira <yo...@apache.org>.
Hola,
I've added notes to the download page and to the README.html on the
web site which contains packaging information  If you'd like to send
an email to the list or add notes elsewhere, have fun ;)

Yoav

On 3/16/06, Mladen Turk <mt...@apache.org> wrote:
> Yoav Shapira wrote:
> > Hola,
> > The one thing I don't want to do is repackage 5.5.16.  The do nothing
> > option is viable, as is just sending a message (ideally a response to
> > my stable vote announcement) to the mailing lists saying "by the way,
> > it's stable but it has native 1.1.1 just fyi."  If you want to build
> > just native 1.1.2 and post it on the download page as a small separate
> > binary, that's fine by me as well...
> >
>
> We'll have a zillion of: "it doesn't work" on the user list ;).
> But like Remy said, a note should be fine, but it should go as
> a simple note on the web site and README in the FTP.
>
> Regards,
> Mladen.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>


--
Yoav Shapira
Nimalex LLC
1 Mifflin Place, Suite 310
Cambridge, MA, USA
yoavs@computer.org / www.yoavshapira.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Mladen Turk <mt...@apache.org>.
Yoav Shapira wrote:
> Hola,
> The one thing I don't want to do is repackage 5.5.16.  The do nothing
> option is viable, as is just sending a message (ideally a response to
> my stable vote announcement) to the mailing lists saying "by the way,
> it's stable but it has native 1.1.1 just fyi."  If you want to build
> just native 1.1.2 and post it on the download page as a small separate
> binary, that's fine by me as well...
>

We'll have a zillion of: "it doesn't work" on the user list ;).
But like Remy said, a note should be fine, but it should go as
a simple note on the web site and README in the FTP.

Regards,
Mladen.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Yoav Shapira <yo...@apache.org>.
Hola,
The one thing I don't want to do is repackage 5.5.16.  The do nothing
option is viable, as is just sending a message (ideally a response to
my stable vote announcement) to the mailing lists saying "by the way,
it's stable but it has native 1.1.1 just fyi."  If you want to build
just native 1.1.2 and post it on the download page as a small separate
binary, that's fine by me as well...

Yoav

On 3/16/06, Mladen Turk <mt...@apache.org> wrote:
> Yoav Shapira wrote:
>  > The Apache Tomcat Team has voted to certify v5.5.16 as stable.
>  > Binding +1 votes were cast by Mladen Turk, Peter Rossbach, Remy
>  > Maucherat, Henri Gomez, Jeanfrancois Arcand, and myself.
>  >
>
> Just figured out that the 5.5.16 was shipped with tomcat-native-1.1.1,
> and it should be 1.1.2.
>
> How should we resolve that? By repacking or releasing 5.5.17
> I'm in favor of second.
>
> Regards,
> Mladen.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>


--
Yoav Shapira
Nimalex LLC
1 Mifflin Place, Suite 310
Cambridge, MA, USA
yoavs@computer.org / www.yoavshapira.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Remy Maucherat <re...@apache.org>.
Yoav Shapira wrote:
> Hola,
> Releasing a new version a day after declaring the previous one stable
> is... amusing... At most I'd package this optional piece minor-minor
> release (1.1.1 to 1.1.2) separately and tell users where to find it if
> interested.  Are we not modular enough to do this?

1.1.2 is already available and easy to download (here: 
http://www.apache.org/dist/tomcat/tomcat-connectors/native/tomcat-native-1.1.2.tar.gz).

For Windows installer users, it's ok (it will d/l the up to date 1.1.2 
dll). The 1.1.1 package Mladen is talking about is the one in "bin" 
inside the Tomcat distribution. Tomcat will put out an error message 
requesting version 1.1.2 if you try to run it with 1.1.1.

So IMO, it's a problem, but people can still figure it out (maybe you 
can add a note to the readme on the download page, or something).

Rémy

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Yoav Shapira <yo...@apache.org>.
Hola,
Releasing a new version a day after declaring the previous one stable
is... amusing... At most I'd package this optional piece minor-minor
release (1.1.1 to 1.1.2) separately and tell users where to find it if
interested.  Are we not modular enough to do this?

Yoav

On 3/16/06, Filip Hanik - Dev Lists <de...@hanik.com> wrote:
> I'm in favor on releasing 5.5.17, users shouldn't have to figure it out
> the hard way.
>
> Filip
>
> Mladen Turk wrote:
> > Yoav Shapira wrote:
> > > The Apache Tomcat Team has voted to certify v5.5.16 as stable.
> > > Binding +1 votes were cast by Mladen Turk, Peter Rossbach, Remy
> > > Maucherat, Henri Gomez, Jeanfrancois Arcand, and myself.
> > >
> >
> > Just figured out that the 5.5.16 was shipped with tomcat-native-1.1.1,
> > and it should be 1.1.2.
> >
> > How should we resolve that? By repacking or releasing 5.5.17
> > I'm in favor of second.
> >
> > Regards,
> > Mladen.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: dev-help@tomcat.apache.org
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>


--
Yoav Shapira
Nimalex LLC
1 Mifflin Place, Suite 310
Cambridge, MA, USA
yoavs@computer.org / www.yoavshapira.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Filip Hanik - Dev Lists <de...@hanik.com>.
I'm in favor on releasing 5.5.17, users shouldn't have to figure it out 
the hard way.

Filip

Mladen Turk wrote:
> Yoav Shapira wrote:
> > The Apache Tomcat Team has voted to certify v5.5.16 as stable.
> > Binding +1 votes were cast by Mladen Turk, Peter Rossbach, Remy
> > Maucherat, Henri Gomez, Jeanfrancois Arcand, and myself.
> >
>
> Just figured out that the 5.5.16 was shipped with tomcat-native-1.1.1,
> and it should be 1.1.2.
>
> How should we resolve that? By repacking or releasing 5.5.17
> I'm in favor of second.
>
> Regards,
> Mladen.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE][RESULT] Tomcat v5.5.16 Stability

Posted by Mladen Turk <mt...@apache.org>.
Yoav Shapira wrote:
 > The Apache Tomcat Team has voted to certify v5.5.16 as stable.
 > Binding +1 votes were cast by Mladen Turk, Peter Rossbach, Remy
 > Maucherat, Henri Gomez, Jeanfrancois Arcand, and myself.
 >

Just figured out that the 5.5.16 was shipped with tomcat-native-1.1.1,
and it should be 1.1.2.

How should we resolve that? By repacking or releasing 5.5.17
I'm in favor of second.

Regards,
Mladen.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org