summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--abrt.spec1
-rw-r--r--configure.ac5
3 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 24b8e9cf..60e66c8d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,4 @@
+ACLOCAL_AMFLAGS = -I m4
SUBDIRS = lib src inc po icons
EXTRA_DIST = doc/CodingStyle abrt.spec
diff --git a/abrt.spec b/abrt.spec
index a30dd0df..5156476e 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -193,6 +193,7 @@ Plugin to uploading files to a server.
Summary: %{name}'s addon for catching and analyzing Python exceptions
Group: System Environment/Libraries
Requires: %{name} = %{version}-%{release}
+Obsoletes: gnome-python2-bugbuddy
%description addon-python
This package contains python hook and python analyzer plugin for handling
diff --git a/configure.ac b/configure.ac
index 1465ed88..d6f55d21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([abrt], [1.1.1], [crash-catcher@fedorahosted.org])
-
+AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_ARG_ENABLE(debug,
@@ -49,6 +49,9 @@ PKG_CHECK_MODULES([ZIP],[libzip])
AC_CHECK_HEADER([libtar.h], [],
[AC_MSG_ERROR([libtar.h is needed to build abrt])])
+AC_CHECK_HEADER([bzlib.h], [],
+ [AC_MSG_ERROR([bzlib.h is needed to build abrt])])
+
AC_CHECK_HEADER([sys/inotify.h], [],
[AC_MSG_ERROR([sys/inotify.h is needed to build abrt])])