Hello community, here is the log from the commit of package rxvt-unicode checked in at Mon Jul 31 23:28:24 CEST 2006. -------- --- rxvt-unicode/rxvt-unicode.changes 2006-07-20 17:14:57.000000000 +0200 +++ rxvt-unicode/rxvt-unicode.changes 2006-07-31 22:19:06.000000000 +0200 @@ -1,0 +2,23 @@ +Thu Jul 20 17:55:56 CEST 2006 - mrueckert@suse.de + +- Update to version 7.8: + This release primarily fixes a lot of bugs but also adds a few + minor features: unlike Xt and previous versions, rxvt-unicode + now always reads $HOME/.Xdefaults, a kuake-like extension has + been added, Xft and X11 colours now agree (this fixes colour + banding effects), hilightcolour-support has been re-enabled, + the "depth" resource is now respected, several Debian patches + have been integrated, and double-buffered Xft is now + configurable via features.h. Many minor bugs have been fixed. + +- WARNING this version seems to have a broken daemon mode (urxvtd) + +------------------------------------------------------------------- +Mon Jul 17 18:07:42 CEST 2006 - mrueckert@suse.de + +- added rxvt-unicode-7.7_utmp_including.patch: + UTMP_FILE is defined in /usr/include/utmp.h + if you want to check for it, you have to include it before + checking for it. + +------------------------------------------------------------------- Old: ---- rxvt-unicode-7.7.tar.bz2 rxvt-unicode-always_true_if.patch New: ---- rxvt-unicode-7.7_utmp_including.patch rxvt-unicode-7.8.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rxvt-unicode.spec ++++++ --- /var/tmp/diff_new_pack.FDGwZs/_old 2006-07-31 23:28:11.000000000 +0200 +++ /var/tmp/diff_new_pack.FDGwZs/_new 2006-07-31 23:28:11.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package rxvt-unicode (Version 7.7) +# spec file for package rxvt-unicode (Version 7.8) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -13,13 +13,13 @@ Name: rxvt-unicode %define with_terminfo_files 0 # FIXME: this should be < 1011 but the number isnt bumped yet -%if %suse_version < 1010 +%if %{suse_version} <= 1010 %define with_terminfo_files 1 -%endif %define _terminfo /usr/share/terminfo +%endif # -Version: 7.7 -Release: 3 +Version: 7.8 +Release: 1 # License: LGPL Group: System/X11/Terminals @@ -30,10 +30,10 @@ # URL: http://software.schmorp.de/#rxvt-unicode Source: http://dist.schmorp.de/%{name}/%{name}-%{version}.tar.bz2 -Patch1: rxvt-unicode-always_true_if.patch Patch3: rxvt-unicode-7.7_gcc-warnings.patch Patch4: rxvt-unicode-7.7_missing_sentinel.patch Patch5: rxvt-unicode-ptytty.patch +Patch6: rxvt-unicode-7.7_utmp_including.patch # Summary: Rxvt X-Terminal with Unicode support @@ -54,6 +54,7 @@ %patch3 %patch4 %patch5 +%patch6 find -type d -name CVS -print0 | xargs -r0 rm -r %build @@ -104,8 +105,13 @@ --enable-pointer-blank \ --enable-8bitctrls \ --enable-frills \ +%if %{?suse_version} > 1010 + --with-xpm-includes=%{_includedir} \ + --with-xpm-library=%{_libdir} \ +%else --with-xpm-includes=/usr/X11R6/include \ --with-xpm-library=/usr/X11R6/%{_lib} \ +%endif --with-xpm %{__make} @@ -153,10 +159,27 @@ %{_libdir}/urxvt/perl/tabbed %{_libdir}/urxvt/perl/remote-clipboard %{_libdir}/urxvt/perl/xim-onthespot +%{_libdir}/urxvt/perl/kuake %changelog -n rxvt-unicode +* Thu Jul 20 2006 - mrueckert@suse.de +- Update to version 7.8: + This release primarily fixes a lot of bugs but also adds a few + minor features: unlike Xt and previous versions, rxvt-unicode + now always reads $HOME/.Xdefaults, a kuake-like extension has + been added, Xft and X11 colours now agree (this fixes colour + banding effects), hilightcolour-support has been re-enabled, + the "depth" resource is now respected, several Debian patches + have been integrated, and double-buffered Xft is now + configurable via features.h. Many minor bugs have been fixed. +- WARNING this version seems to have a broken daemon mode (urxvtd) * Thu Jul 20 2006 - schwab@suse.de - Fix broken configure check. +* Mon Jul 17 2006 - mrueckert@suse.de +- added rxvt-unicode-7.7_utmp_including.patch: + UTMP_FILE is defined in /usr/include/utmp.h + if you want to check for it, you have to include it before + checking for it. * Tue May 23 2006 - mrueckert@suse.de - No longer install the terminfo file. It is part of the terminfo package now. ++++++ rxvt-unicode-7.7_utmp_including.patch ++++++ UTMP_FILE is defined in /usr/include/utmp.h if you want to check for it, you have to include it before checking for it. Index: src/ptytty.h =================================================================== --- src/ptytty.h.orig +++ src/ptytty.h @@ -11,6 +11,13 @@ # define PTYTTY_NO_PID_CHECK 1 #endif +# ifdef HAVE_UTMPX_H +# include <utmpx.h> +# endif +# ifdef HAVE_UTMP_H +# include <utmp.h> +# endif + #if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY) || defined(UNIX98_PTY) # define NO_SETOWNER_TTYDEV 1 #endif @@ -25,13 +32,6 @@ # undef HAVE_STRUCT_UTMP # endif -# ifdef HAVE_UTMPX_H -# include <utmpx.h> -# endif -# ifdef HAVE_UTMP_H -# include <utmp.h> -# endif - # if ! defined(HAVE_STRUCT_UTMPX) && ! defined(HAVE_STRUCT_UTMP) # error cannot build with utmp support - no utmp or utmpx struct found # endif ++++++ rxvt-unicode-7.7.tar.bz2 -> rxvt-unicode-7.8.tar.bz2 ++++++ ++++ 16074 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit-unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit-help@opensuse.org
participants (1)
-
root@suse.de