|
Boost Testing : |
From: Christopher Kohlhoff (chris_at_[hidden])
Date: 2007-09-24 21:57:31
On Mon, 24 Sep 2007 20:22:20 -0500, "Rene Rivera"
<grafikrobot_at_[hidden]> said:
> Christopher,
>
> Was there a reason for this change? Did you forget to add a "lib ipv6 ;"
> someplace? Perhaps you meant "<os>HPUX:<find-shared-library>ipv6"?
>
> Please fix this ASAP, as it's preventing testing on HP-UX.
Yikes, I never realised the test Jamfiles were that fragile :-O
Yep, it's a missing "lib ipv6 ;". I have checked in the following
change:
--- test/Jamfile.v2 (revision 39516)
+++ test/Jamfile.v2 (working copy)
@@ -18,6 +18,10 @@
lib ws2_32 ;
lib mswsock ;
}
+else if [ os.name ] = HPUX
+{
+ lib ipv6 ;
+}
Let me know if there are any more problems.
Cheers,
Chris