Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-12 Thread Scott Mann
Thank you. See (some of you?) next week! On Wed, Nov 12, 2014 at 8:44 AM, Flavio Leitner wrote: > On Wed, Nov 12, 2014 at 08:38:44AM -0800, Ben Pfaff wrote: > > On Wed, Nov 12, 2014 at 02:13:48PM -0200, Flavio Leitner wrote: > > > On Tue, Nov 11, 2014 at 10:09:49PM -0800, Ben Pfaff wrote: > > >

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-12 Thread Flavio Leitner
On Wed, Nov 12, 2014 at 08:38:44AM -0800, Ben Pfaff wrote: > On Wed, Nov 12, 2014 at 02:13:48PM -0200, Flavio Leitner wrote: > > On Tue, Nov 11, 2014 at 10:09:49PM -0800, Ben Pfaff wrote: > > > On Tue, Nov 11, 2014 at 07:28:50PM -0800, Scott Mann wrote: > > > > Let me know what you want me to chang

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-12 Thread Ben Pfaff
On Wed, Nov 12, 2014 at 02:13:48PM -0200, Flavio Leitner wrote: > On Tue, Nov 11, 2014 at 10:09:49PM -0800, Ben Pfaff wrote: > > On Tue, Nov 11, 2014 at 07:28:50PM -0800, Scott Mann wrote: > > > Let me know what you want me to change, if you want me to do it. I'm still > > > paying attention :) > >

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-12 Thread Flavio Leitner
On Wed, Nov 12, 2014 at 05:31:05PM +0100, Thomas Graf wrote: > On 11/12/14 at 02:13pm, Flavio Leitner wrote: > > It doesn't work here: > > > > master]$ git log --oneline -2 > > 7f2f24e Build: Add support for shared libraries and versioning. > > 86f35fb util: Add be32_prefix_mask(). > > > > master

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-12 Thread Thomas Graf
On 11/12/14 at 02:13pm, Flavio Leitner wrote: > It doesn't work here: > > master]$ git log --oneline -2 > 7f2f24e Build: Add support for shared libraries and versioning. > 86f35fb util: Add be32_prefix_mask(). > > master]$ ./boot.sh && ./configure --enable-shared && make > [...] > /bin/sh ./libt

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-12 Thread Flavio Leitner
On Tue, Nov 11, 2014 at 10:09:49PM -0800, Ben Pfaff wrote: > On Tue, Nov 11, 2014 at 07:28:50PM -0800, Scott Mann wrote: > > Let me know what you want me to change, if you want me to do it. I'm still > > paying attention :) > > I folded in the following change to improve the Autoconf quoting (see,

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-11 Thread Ben Pfaff
On Tue, Nov 11, 2014 at 07:28:50PM -0800, Scott Mann wrote: > Let me know what you want me to change, if you want me to do it. I'm still > paying attention :) I folded in the following change to improve the Autoconf quoting (see, I said it was minor) and update AUTHORS, and applied this to master.

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-11 Thread Scott Mann
Ben, Let me know what you want me to change, if you want me to do it. I'm still paying attention :) -Scott On Tue, Nov 11, 2014 at 6:04 PM, Gurucharan Shetty wrote: > On Tue, Nov 11, 2014 at 3:07 PM, Ben Pfaff wrote: > > On Fri, Nov 07, 2014 at 07:02:09PM -0800, Scott Mann wrote: > >> From: Sco

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-11 Thread Gurucharan Shetty
On Tue, Nov 11, 2014 at 3:07 PM, Ben Pfaff wrote: > On Fri, Nov 07, 2014 at 07:02:09PM -0800, Scott Mann wrote: >> From: Scott Mann >> >> These changes allow for the building of shared libraries by providing >> the --enable-shared option to configure. In particular, lib/libopenvwitch.so, >> lib/l

Re: [ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-11 Thread Ben Pfaff
On Fri, Nov 07, 2014 at 07:02:09PM -0800, Scott Mann wrote: > From: Scott Mann > > These changes allow for the building of shared libraries by providing > the --enable-shared option to configure. In particular, lib/libopenvwitch.so, > lib/libsflow.so, ofproto/libofproto.so, and ovsdb/libovsdb.so

[ovs-dev] [PATCH v3] Build: Shared libraries and versioning

2014-11-07 Thread Scott Mann
From: Scott Mann These changes allow for the building of shared libraries by providing the --enable-shared option to configure. In particular, lib/libopenvwitch.so, lib/libsflow.so, ofproto/libofproto.so, and ovsdb/libovsdb.so will be built. Original behavior of building static remains the same.