aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2010-07-18 20:18:17 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2010-07-18 20:18:17 +0000
commitbe51d9e2f7277c3d5adaa9d63a4dbe8442a5b39f (patch)
treea7b7b6d3cbba757d30c32cdffa44397adfbae11c /contrib
parent437c3f5a89a6d667d277685a04ca1f4c83320729 (diff)
update docs
git-svn-id: https://gnunet.org/svn/gnunet@12252 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/report.sh21
1 files changed, 10 insertions, 11 deletions
diff --git a/contrib/report.sh b/contrib/report.sh
index 521226c946..aab0c2082c 100755
--- a/contrib/report.sh
+++ b/contrib/report.sh
@@ -7,8 +7,6 @@ else
WHICH=type
fi
-echo "On some systems, you may need to change /bin/sh to point to bash"
-echo
echo "Please submit the following information with your bug report: "
echo "--------------------------------------------------------------"
OS=`uname -s 2>/dev/null`
@@ -86,9 +84,17 @@ fi
TEST=`$WHICH gnunetd 2>/dev/null`
if test -n "$TEST"; then
gnunetd -v | sed -e "s/v//" 2>/dev/null |\
- awk '{print "GNUnet : "$2}'
+ awk '{print "GNUnet 0.8 : "$2 (may conflict!)}'
else
- echo "GNUnet : Not Found"
+ echo "GNUnet 0.8 : Not Found (good)"
+fi
+
+TEST=`$WHICH gnunet-arm 2>/dev/null`
+if test -n "$TEST"; then
+ gnunet-arm -v | sed -e "s/v//" 2>/dev/null |\
+ awk '{print "GNUnet 0.9 : "$2}'
+else
+ echo "GNUnet 0.9 : Not Found"
fi
TEST=`$WHICH libgcrypt-config 2> /dev/null`
@@ -169,13 +175,6 @@ else
fi
-TEST=`grep "Id:" /usr/include/adns.h 2> /dev/null`
-if test -n "$TEST"; then
- echo "$TEST" | awk '{print "GNU adns : "$4}'
-else
- echo "GNU adns : Not found"
-fi
-
TEST=`which qmake 2> /dev/null`
if test -x "$TEST"; then
qmake --version | tail -n 1 | awk '{print "Qt : "$4}'