public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/abrt] update-2.17.9-f44: build fixes
@ 2026-08-03 11:03 Jiri
0 siblings, 0 replies; 2+ messages in thread
From: Jiri @ 2026-08-03 11:03 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/abrt
Branch : update-2.17.9-f44
Commit : 345a47681eb0c58d6bf49cdd38a0db58f1e484be
Author : Jiri <moskovcak@gmail.com>
Date : 2012-01-03T13:11:59+01:00
Stats : +14/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/abrt/c/345a47681eb0c58d6bf49cdd38a0db58f1e484be?branch=update-2.17.9-f44
Log:
build fixes
---
diff --git a/abrt.spec b/abrt.spec
index 26ecac9..ead2932 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -7,6 +7,16 @@
%bcond_with systemd
%endif
+# systemd wasn't set by the code above - so we're on old Fedora or we're not on Fedora at all
+%if %{without systemd}
+ %if 0%{?rhel} >= 7
+ %bcond_without systemd
+ %else
+ %bcond_with systemd
+ %endif
+%endif
+
+
%if 0%{?rhel} >= 6
%define vendor redhat
%else
@@ -16,7 +26,7 @@
Summary: Automatic bug detection and reporting tool
Name: abrt
Version: 2.0.7
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: Applications/System
URL: https://fedorahosted.org/abrt/
@@ -529,6 +539,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%defattr(-,root,root,-)
%changelog
+* Tue Jan 03 2012 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.7-3
+- build fixes
+
* Thu Dec 08 2011 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.7-2
- added man page
- fixed weird number formatting
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [rpms/abrt] update-2.17.9-f44: build fixes
@ 2026-08-03 11:03
0 siblings, 0 replies; 2+ messages in thread
From: @ 2026-08-03 11:03 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/abrt
Branch : update-2.17.9-f44
Commit : 247876f55ba2b633fbcc54e1581d53676aed769b
Author : Jiří Moskovčák <jmoskovc@fedoraproject.org>
Date : 2010-07-26T14:07:20+00:00
Stats : +42/-1 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/abrt/c/247876f55ba2b633fbcc54e1581d53676aed769b?branch=update-2.17.9-f44
Log:
build fixes
---
diff --git a/abrt-1.1.10-applet.patch b/abrt-1.1.10-applet.patch
new file mode 100644
index 0000000..3c3281a
--- /dev/null
+++ b/abrt-1.1.10-applet.patch
@@ -0,0 +1,36 @@
+commit 406c8793bef87fb49333d7196ea23d42be87c21e
+Author: Jiri Moskovcak <jmoskovc@redhat.com>
+Date: Mon Jul 26 15:33:02 2010 +0200
+
+ APPLET: minor build fix
+
+diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp
+index 8596f4c..02d911d 100644
+--- a/src/Applet/CCApplet.cpp
++++ b/src/Applet/CCApplet.cpp
+@@ -361,7 +361,7 @@ void CApplet::Disable(const char *reason)
+ if (pixbuf)
+ {
+ gray_scaled = gdk_pixbuf_copy(pixbuf);
+- gdk_pixbuf_saturate_and_pixelate(pixbuf, gray_scaled, 0.0, NULL);
++ gdk_pixbuf_saturate_and_pixelate(pixbuf, gray_scaled, 0.0, false);
+ gtk_status_icon_set_from_pixbuf(m_pStatusIcon, gray_scaled);
+ //do we need to free pixbufs nere?
+ }
+diff --git a/src/Applet/Makefile.am b/src/Applet/Makefile.am
+index 6abef3b..77c9fc9 100644
+--- a/src/Applet/Makefile.am
++++ b/src/Applet/Makefile.am
+@@ -26,10 +26,10 @@ abrt_applet_LDADD = \
+ -lglib-2.0 \
+ -lgthread-2.0 \
+ $(DBUS_LIBS) \
+- $(LIBNOTIFY_LIBS)
++ $(LIBNOTIFY_LIBS) \
++ $(GTK_LIBS)
+ # ../../lib/Utils/libABRTdUtils.la
+ # $(DL_LIBS)
+-# $(GTK_LIBS)
+
+ EXTRA_DIST = abrt-applet.desktop
+
diff --git a/abrt.spec b/abrt.spec
index 14eadee..908a671 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -11,7 +11,7 @@
%if 0%{?_buildid}
%define pkg_release 0.%{?_buildid}%{?dist}
%else
-%define pkg_release 1%{?dist}
+%define pkg_release 2%{?dist}
%endif
Summary: Automatic bug detection and reporting tool
@@ -27,6 +27,7 @@ Source1: abrt.init
Patch0: abrt-1.0.9-hideprefs.patch
Patch1: abrt_disable_gpgcheck.diff
Patch2: blacklist_mono.patch
+Patch3: abrt-1.1.10-applet.patch
BuildRequires: dbus-devel
BuildRequires: gtk2-devel
BuildRequires: curl-devel
@@ -231,6 +232,7 @@ Virtual package to make easy default installation on desktop environments.
%patch1 -p1 -b .disable_gpg_check
# general patches
%patch2 -p1 -b .blacklist_mono
+%patch3 -p1 -b .applet_build
%build
%configure
@@ -443,6 +445,9 @@ fi
%defattr(-,root,root,-)
%changelog
+* Mon Jul 26 2010 Jiri Moskovcak <jmoskovc@redhat.com> 1.1.10-2
+- minor build fixes
+
* Mon Jul 26 2010 Jiri Moskovcak <jmoskovc@redhat.com> 1.1.10-1
- blacklisted mono-core package
- die with an error message if the database plugin is not accessible when needed (kklic@redhat.com)
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-03 11:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-03 11:03 [rpms/abrt] update-2.17.9-f44: build fixes Jiri
-- strict thread matches above, loose matches on Subject: below --
2026-08-03 11:03
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox