gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated (5700083a2 -> dda10ff31)


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated (5700083a2 -> dda10ff31)
Date: Fri, 22 Feb 2019 22:14:24 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a change to branch master
in repository gnunet.

    from 5700083a2 RPS profiler: Log index of peer
     new 08224fdd4 gnunet-bugreport: add checks for pkg_add, some fixes
     new b9e8e6baa RPS profiler: Log index of peer
     new dda10ff31 Merge branch 'master' of gnunet.org:gnunet

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 contrib/scripts/gnunet-bugreport | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/contrib/scripts/gnunet-bugreport b/contrib/scripts/gnunet-bugreport
index f17cb7636..e7d9caa7e 100755
--- a/contrib/scripts/gnunet-bugreport
+++ b/contrib/scripts/gnunet-bugreport
@@ -24,6 +24,22 @@ else
   echo "gcc            : Not Found";
 fi
 
+TEST=`$WHICH cc 2>/dev/null`
+if test -n "$TEST"; then
+  VERS=`cc --version 2>/dev/null | head -n 1`
+  echo "cc             : $VERS"
+else
+  echo "cc             : Not Found";
+fi
+
+TEST=`$WHICH c++ 2>/dev/null`
+if test -n "$TEST"; then
+  VERS=`c++ --version 2>/dev/null | head -n 1`
+  echo "c++            : $VERS"
+else
+  echo "c++            : Not Found";
+fi
+
 TEST=`$WHICH gmake 2>/dev/null`
 if test -n "$TEST" ; then
        gmake --version 2>/dev/null |\
@@ -176,6 +192,16 @@ else
   fi
 fi
 
+TEST=`$WHICH pkg_add 2> /dev/null`
+if test -n "$TEST"; then
+  VERSION_UNISTRING=`pkg_info -Nb libunistring`
+  VERSION_GMP=`pkg_info -Nb gmp`
+  echo "libunistring     :"
+  echo "$VERSION_UNISTRING"
+  echo "GMP              :"
+  echo "$VERSION_GMP"
+fi
+
 TEST=`$WHICH gettext 2> /dev/null`
 if test -n "$TEST"; then
   gettext --version | head -n1 2> /dev/null | \

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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