summaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-06-15 04:14:14 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-06-15 04:14:14 +0200
commitc7197324b1e9e33260a1d9fd7e26528d9d562abc (patch)
tree1240bfd3ffbd9bfda44e92620d472902c3c6a27e /src/cli
parent5559fa5915b6c72ced25bb6be77be2202e6438fb (diff)
downloadabrt-c7197324b1e9e33260a1d9fd7e26528d9d562abc.tar.gz
abrt-c7197324b1e9e33260a1d9fd7e26528d9d562abc.tar.xz
abrt-c7197324b1e9e33260a1d9fd7e26528d9d562abc.zip
cli: use deletion through socket. cli does not depend on dbus anymore
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/Makefile.am4
-rw-r--r--src/cli/cli.c1
2 files changed, 2 insertions, 3 deletions
diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am
index 5746e4b2..330061de 100644
--- a/src/cli/Makefile.am
+++ b/src/cli/Makefile.am
@@ -13,13 +13,13 @@ abrt_cli_CPPFLAGS = \
-DVAR_RUN=\"$(VAR_RUN)\" \
-DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \
-DPLUGINS_CONF_DIR=\"$(PLUGINS_CONF_DIR)\" \
- $(DBUS_CFLAGS) $(GLIB_CFLAGS) \
+ $(GLIB_CFLAGS) \
-D_GNU_SOURCE \
$(LIBREPORT_CFLAGS) \
-Wall -Wwrite-strings -Werror
# $(GTK_CFLAGS)
abrt_cli_LDADD = \
- $(LIBREPORT_LIBS) -labrt_dbus \
+ $(LIBREPORT_LIBS) \
$(GLIB_LIBS)
MAN_TXT = \
diff --git a/src/cli/cli.c b/src/cli/cli.c
index 0e4ce98c..db971b83 100644
--- a/src/cli/cli.c
+++ b/src/cli/cli.c
@@ -20,7 +20,6 @@
#endif
#include <getopt.h>
#include "abrtlib.h"
-#include "abrt_dbus.h"
#include "report.h"