powerguru-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Powerguru-commit] [SCM] powerguru branch, master, updated. 0284551ba6e4


From: Rob Savoye
Subject: [Powerguru-commit] [SCM] powerguru branch, master, updated. 0284551ba6e4a83255215b277063c24948ac8548
Date: Mon, 17 Dec 2018 16:23:24 -0500 (EST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "powerguru".

The branch, master has been updated
       via  0284551ba6e4a83255215b277063c24948ac8548 (commit)
       via  64e84f4c18b0553b1043206dc7059ad4f98d4d29 (commit)
       via  f0f77bc7da1a0e0ea5bce258c7c17d05d68598f4 (commit)
      from  4b8448e97628e47df0a3731d8178022765562847 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/powerguru.git/commit/?id=0284551ba6e4a83255215b277063c24948ac8548


commit 0284551ba6e4a83255215b277063c24948ac8548
Author: Rob Savoye <address@hidden>
Date:   Mon Dec 17 14:23:08 2018 -0700

    Add tests for owshell and libboost

diff --git a/configure.ac b/configure.ac
index ec88d84..c3187f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -323,9 +323,25 @@ if test x"${has_ownet}" = x"true"; then
   AC_SUBST(OWNET_LIBS)
 fi
 AM_CONDITIONAL(BUILD_OWNET, [ test x${has_ownet} = xtrue ])
+dnl ow-shell is a collection off shell utilities
+AC_CHECK_PROG([owshell], [owdir], [yes], [no], [/usr/bin])
+if test x"${owshell}" = x"no"; then
+   AC_MSG_WARNING([You should install the 'ow-shell' package])
+fi
 
 dnl mariadb development files
 dnl FIXME
+dnl FIXME: add tests for libboost, libownet-dev, dejagnu
+
+AC_MSG_CHECKING([For Boost development files])
+AC_TRY_COMPILE([#include <boost/algorithm/string.hpp>], [
+  std::vector<std::string> results;
+  char *buf;
+  boost::split(results, buf, boost::is_any_of(","));
+  ],
+  has_boost=yes,
+  has_boost=yes
+)
 
 dnl FIXME: Force this definition as there is a type conflict between the 
net-snmp
 dnl defintion and tje sys/types,h one.

http://git.savannah.gnu.org/cgit/powerguru.git/commit/?id=64e84f4c18b0553b1043206dc7059ad4f98d4d29


commit 64e84f4c18b0553b1043206dc7059ad4f98d4d29
Author: Rob Savoye <address@hidden>
Date:   Mon Dec 17 12:57:00 2018 -0700

    Use 'yes' instead of 'true'

diff --git a/configure.ac b/configure.ac
index 2c20b91..ec88d84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -171,7 +171,7 @@ if test x"${cross_compiling}" = xyes; then
 
   dnl If the user specifies a sysroot that isn't the default, add it to
   dnl the compilation
-  if test x"${gcc_sysroot}" != x"${sysroot}" -a x"${sysroot}" != x"/"; then
+  if test x"${gcc_sysroot}" != x"${sysroot}" -a x"${sysroot}" != x; then
     CXXFLAGS+=" --sysroot=${sysroot}"
     CFLAGS+=" --sysroot=${sysroot}"
     LDFLAGS+=" -Wl,-rpath=${sysroot}/usr/lib/${host_alias}"
@@ -422,13 +422,13 @@ dnl
 dnl Often warning messages get lost in the output from configure, so
 dnl redisplay the few critical ones so they don't get ignored.
 dnl
-if test x"${has_libxml}" != x"true"; then
+if test x"${has_libxml}" != x"yes"; then
   echo "        To use XML, install the libxml2 development package for your 
system"
 else
   echo "        Found libxml2, will configure XML support"
 fi
 
-if test x"${has_snmp}" != x"true"; then
+if test x"${has_snmp}" != x"yes"; then
   echo "        To use SNMP. install the net-snmp development package for your 
system"
 else
   echo "        Found net-snmp. will configure SNMP support"

http://git.savannah.gnu.org/cgit/powerguru.git/commit/?id=f0f77bc7da1a0e0ea5bce258c7c17d05d68598f4


commit f0f77bc7da1a0e0ea5bce258c7c17d05d68598f4
Author: Rob Savoye <address@hidden>
Date:   Wed Dec 12 18:39:24 2018 -0700

    Specfile for cross compiling to get the right libc

diff --git a/cross.spec b/cross.spec
new file mode 100644
index 0000000..900f533
--- /dev/null
+++ b/cross.spec
@@ -0,0 +1,4 @@
+%rename lib libc
+
+*lib:
+%(libc)

-----------------------------------------------------------------------

Summary of changes:
 configure.ac | 22 +++++++++++++++++++---
 cross.spec   |  4 ++++
 2 files changed, 23 insertions(+), 3 deletions(-)
 create mode 100644 cross.spec


hooks/post-receive
-- 
powerguru



reply via email to

[Prev in Thread] Current Thread [Next in Thread]