summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Volz <andreas@frodo.mittelerde>2009-01-06 22:44:48 +0100
committerAndreas Volz <andreas@frodo.mittelerde>2009-01-06 22:44:48 +0100
commit1be7315cd88d982da4c6c30a810e5df1a3211907 (patch)
tree260109a77f954426cf79dffe0c5c609e85242e58
parentd0c41b03ff4d5845e3a348d2e938f0fd5f285b2d (diff)
downloaddbus-c++-1be7315cd88d982da4c6c30a810e5df1a3211907.tar.gz
small follow of fdo branch
-rw-r--r--README7
-rw-r--r--configure.ac5
-rw-r--r--examples/echo/echo-client.cpp2
3 files changed, 2 insertions, 12 deletions
diff --git a/README b/README
index 355c3d5..6977af1 100644
--- a/README
+++ b/README
@@ -3,12 +3,5 @@ Debugging
To compile debugging code configure the project with the --enable-debug option. Then at runtime you may set the environment variable "DBUSXX_VERBOSE=1" to activate debugging and to '0' to deactivate debugging.
-Hints
------
-Your applications based on dbus-c++ have to support PTHREAD and to export the variable HAVE_PTHREAD_H.
-
-
BUGS:
-----
-- dbus seems to stop working sometimes (only seen with ecore integrattion)
-- ecore dbus integration is really "raw" (but working) at the moment
diff --git a/configure.ac b/configure.ac
index 391b4a4..2054a07 100644
--- a/configure.ac
+++ b/configure.ac
@@ -138,8 +138,8 @@ AC_SUBST(xml_LIBS)
ACX_PTHREAD
if test x"$acx_pthread_ok" = xyes; then
- AC_DEFINE(HAVE_PTHREAD_H, 1, [Define to enable pthread support])
- AM_CONDITIONAL(HAVE_PTHREAD, test x"$acx_pthread_ok" = xyes)
+ AC_DEFINE(HAVE_PTHREAD_H, 1, [Define to enable pthread support])
+ AM_CONDITIONAL(HAVE_PTHREAD, test x"$acx_pthread_ok" = xyes)
fi
if test "$enable_debug" = "yes" ; then
@@ -149,7 +149,6 @@ else
CXXFLAGS="$CXXFLAGS -Wall -O3"
fi
-
# Doxygen Documentation
AC_PATH_PROG(DOXYGEN, doxygen, no)
diff --git a/examples/echo/echo-client.cpp b/examples/echo/echo-client.cpp
index 03433b7..093595f 100644
--- a/examples/echo/echo-client.cpp
+++ b/examples/echo/echo-client.cpp
@@ -42,9 +42,7 @@ void *greeter_thread(void *arg)
for (int i = 0; i < 30 && spin; ++i)
{
- cout << "+Hello" << endl;
cout << client.Hello(idstr) << endl;
- cout << "-Hello" << endl;
}
cout << idstr << " done " << endl;