Re: [Live-devel] Breaking change

2013-03-11 Thread Jeff Shanab
ment & use Subject: Re: [Live-devel] Breaking change may be the easiest solution for such issue is to wrap all Live555 functionality in a namespace? And place "using namespace Live555;" somewhere in it's header. Yes, that's certainly a possibility for the future. To date, ho

Re: [Live-devel] Breaking change

2013-03-11 Thread Nikolai Vorontsov
: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Chris Van Brederode Sent: Monday, March 11, 2013 4:15 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] Breaking change On Mon, Mar 11, 2013 at 11:02 AM, Nikolai Vorontsov w

Re: [Live-devel] Breaking change

2013-03-11 Thread Chris Van Brederode
On Mon, Mar 11, 2013 at 11:02 AM, Nikolai Vorontsov < nikolai.voront...@quadrox.be> wrote: <--snip--> ** > Also, if some of supported compilers doesn't use namespaces (well, may be > some embedded one) - then you might need to use conditional compilation as > you did over 9000 times before ;-) >

Re: [Live-devel] Breaking change

2013-03-11 Thread Ross Finlayson
> may be the easiest solution for such issue is to wrap all Live555 > functionality in a namespace? And place "using namespace Live555;" somewhere > in it's header. Yes, that's certainly a possibility for the future. To date, however, I've avoided using C++ namespaces, because I don't want to

Re: [Live-devel] Breaking change

2013-03-11 Thread Nikolai Vorontsov
Sent: Monday, March 11, 2013 3:22 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] Breaking change I am updating live555 from 2012.2.29 to 2013.03.07 and found a change in Boolean.hh that breaks my build. From reading the changelog, I think this is recent.

Re: [Live-devel] Breaking change

2013-03-11 Thread Nikolai Vorontsov
have a problem... Nikolai From: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Jeff Shanab Sent: Monday, March 11, 2013 2:27 PM To: live-devel@lists.live555.com Subject: [Live-devel] Breaking change I am updati

Re: [Live-devel] Breaking change

2013-03-11 Thread Ross Finlayson
> I am updating live555 from 2012.2.29 to 2013.03.07 and found a change in > Boolean.hh that breaks my build. From reading the changelog, I think this is > recent. > > The line > “ #define Boolean bool “ No, it's *not* recent; it's almost 9 months old! From the changelog: 2012.06.12: - U

[Live-devel] Breaking change

2013-03-11 Thread Jeff Shanab
I am updating live555 from 2012.2.29 to 2013.03.07 and found a change in Boolean.hh that breaks my build. From reading the changelog, I think this is recent. The line " #define Boolean bool " Overwrites a class name in boost (move.cpp) where there is a class with the name Boolean In th