Re: [ovs-dev] [PATCH 2/2] tests: Link test-multipath with libm.

2011-04-12 Thread Ben Pfaff
On Tue, Apr 12, 2011 at 01:38:20PM -0700, Andrew Evans wrote: > This works perfectly. Thank you very much! > > Obligatory spelling nit follows. > > On Tue, Apr 12, 2011 at 11:29 AM, Ben Pfaff wrote: > > Requested-by: Andrew Evan > > s/Evan /Evans/ Thanks, I fixed that and pushed this. ___

Re: [ovs-dev] [PATCH 2/2] tests: Link test-multipath with libm.

2011-04-12 Thread Andrew Evans
This works perfectly. Thank you very much! Obligatory spelling nit follows. On Tue, Apr 12, 2011 at 11:29 AM, Ben Pfaff wrote: > Requested-by: Andrew Evan s/Evan /Evans/ ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo

Re: [ovs-dev] [PATCH 2/2] tests: Link test-multipath with libm.

2011-04-12 Thread Ben Pfaff
On Tue, Apr 12, 2011 at 11:03:49AM -0700, Andrew Evans wrote: > On 4/12/11 10:00 AM, Ben Pfaff wrote: > > Even without this patch I see -lm in the linker command: > > > > gcc -Wstrict-prototypes -Wall -Wno-sign-compare -Wpointer-arith > > -Wdeclaration-after-statement -Wformat-security -Ws

Re: [ovs-dev] [PATCH 2/2] tests: Link test-multipath with libm.

2011-04-12 Thread Andrew Evans
On 4/12/11 10:00 AM, Ben Pfaff wrote: > Even without this patch I see -lm in the linker command: > > gcc -Wstrict-prototypes -Wall -Wno-sign-compare -Wpointer-arith > -Wdeclaration-after-statement -Wformat-security -Wswitch-enum > -Wunused-parameter -Wstrict-aliasing -Wbad-function-cas

Re: [ovs-dev] [PATCH 2/2] tests: Link test-multipath with libm.

2011-04-12 Thread Ben Pfaff
On Mon, Apr 11, 2011 at 06:40:09PM -0700, Andrew Evans wrote: > @@ -226,7 +226,7 @@ tests_test_lockfile_LDADD = lib/libopenvswitch.a > > noinst_PROGRAMS += tests/test-multipath > tests_test_multipath_SOURCES = tests/test-multipath.c > -tests_test_multipath_LDADD = lib/libopenvswitch.a > +tests_

[ovs-dev] [PATCH 2/2] tests: Link test-multipath with libm.

2011-04-11 Thread Andrew Evans
This seems to be required by glibc 2.11.2. --- tests/automake.mk |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/automake.mk b/tests/automake.mk index 7872d21..e02a951 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -226,7 +226,7 @@ tests_test_lockfile_LDA