[Lsb-messages] /var/www/bzr/lsb/devel/olver-core-tests r75: stamp out more olver warnings (bug 3384)

Mats Wichmann mats at linuxfoundation.org
Mon Feb 13 14:56:30 UTC 2012


------------------------------------------------------------
revno: 75
committer: Mats Wichmann <mats at linuxfoundation.org>
branch nick: olver-core-tests
timestamp: Mon 2012-02-13 07:56:30 -0700
message:
  stamp out more olver warnings (bug 3384)
modified:
  package/Makefile
  src/agent/common/command.c
-------------- next part --------------
=== modified file 'package/Makefile'
--- a/package/Makefile	2012-02-11 00:00:45 +0000
+++ b/package/Makefile	2012-02-13 14:56:30 +0000
@@ -1,6 +1,6 @@
 PACKAGE=lsb-test-olver-core
 VERSION=4.1.3
-RELEASE=2
+RELEASE=3
 
 # for pkgchk
 DEPS=

=== modified file 'src/agent/common/command.c'
--- a/src/agent/common/command.c	2008-09-05 17:30:58 +0000
+++ b/src/agent/common/command.c	2012-02-13 14:56:30 +0000
@@ -29,6 +29,9 @@
 // 'io.file' agents
 #include "io/file/file_agent.h"
 
+// 'io.syslog' agents
+#include "io/syslog/syslog_agent.h"
+
 // 'io.term' agents
 #include "io/term/term_agent.h"
 
@@ -125,6 +128,9 @@
 #include "time/timer/timer_agent.h"
 
 // 'util' agents
+// 'util.assert' agents
+#include "util/assert/assert_agent.h"
+
 // 'util.bit' agents
 #include "util/bit/bit_agent.h"
 
@@ -176,6 +182,7 @@
 #include "util/conversion/wchar_agent.h"
 #include "util/conversion/wstrint_agent.h"
 #include "util/conversion/strint_agent.h"
+#include "util/conversion/wstrreal_agent.h"
 
 // 'util.dl' agents
 #include "util/dl/dl_agent.h"
@@ -189,6 +196,42 @@
 // 'math.math' agents
 #include "math/math/math_agent.h"
 
+//'math.real' agents
+#include "math/real/real_agent.h"
+
+//'math.bessel' agents
+#include "math/bessel/bessel_agent.h"
+
+//'math.complex' agents
+#include "math/complex/complex_agent.h"
+
+//'math.chyper' agents
+#include "math/chyper/chyper_agent.h"
+
+//'math.rand' agents
+#include "math/rand/rand_agent.h"
+
+//'math.gamma' agents
+#include "math/gamma/gamma_agent.h"
+
+//'math.error' agents
+#include "math/error/error_agent.h"
+
+//'math.trig' agents
+#include "math/trig/trig_agent.h"
+
+//'math.exp' agents
+#include "math/exp/exp_agent.h"
+
+// 'math.ctrig' agents
+#include "math/ctrig/ctrig_agent.h"
+
+// 'math.cexp' agents
+#include "math/cexp/cexp_agent.h"
+
+// 'math.hyper' agent agents
+#include "math/hyper/hyper_agent.h"
+
 // 'memory.mman' agents
 #include "memory/mman/mman_agent.h"
 
@@ -899,12 +942,20 @@
   register_math_error_commands();
 
   //'math.trig' commands
-
   register_math_trig_commands();
 
   //'math.exp' commands
   register_math_exp_commands();
 
+  // 'math.ctrig' commands
+  register_math_ctrig_commands();
+
+  // 'math.cexp' commands
+  register_math_cexp_commands();
+
+  // 'math.hyper' commands
+  register_math_hyper_commands();
+
   //'util.float' commands
   register_util_float_commands();
 
@@ -944,31 +995,14 @@
   // 'util.format.fmtmsg' agents
   register_util_format_fmtmsg_commands();
 
-
-
-  // 'math.ctrig' agents
-
-  register_math_ctrig_commands();
-
   // util.string.wcasecmp
   register_util_string_wcasecmp_commands();
 
   // util.format.wtime
   register_util_format_wtime_commands();
 
-
-  // 'math.cexp'
-
-  register_math_cexp_commands();
-
-
   // socket.rpc.secure
   register_socket_rpc_secure_commands();
 
 
-  // 'math.hyper' agent
-
-  register_math_hyper_commands();
-
-
 }



More information about the lsb-messages mailing list