Mailinglist Archive: opensuse-commit (857 mails)
| < Previous | Next > |
commit bbtools
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Mon, 12 Nov 2007 21:41:49 +0100
- Message-id: <20071112204149.A836D678335@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package bbtools
checked in at Mon Nov 12 21:41:49 CET 2007.
--------
--- bbtools/bbtools.changes 2007-04-24 19:06:19.000000000 +0200
+++ /mounts/work_src_done/STABLE/bbtools/bbtools.changes 2007-11-12
16:55:45.573954000 +0100
@@ -1,0 +2,5 @@
+Mon Nov 12 16:55:31 CET 2007 - ssommer@xxxxxxx
+
+- fixed compilation with gcc-4.3
+
+-------------------------------------------------------------------
New:
----
bbtools-gcc43.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bbtools.spec ++++++
--- /var/tmp/diff_new_pack.b13354/_old 2007-11-12 21:41:19.000000000 +0100
+++ /var/tmp/diff_new_pack.b13354/_new 2007-11-12 21:41:19.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package bbtools (Version 2007.4.24)
+# spec file for package bbtools (Version 2007.11.12)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -12,14 +12,14 @@
Name: bbtools
BuildRequires: blackbox blackbox-devel freetype2-devel gcc-c++ pkgconfig
xorg-x11-devel
-License: GNU General Public License (GPL)
+License: GPL v2 or later
Group: System/GUI/Other
-Autoreqprov: on
+AutoReqProv: on
Requires: blackbox
-Version: 2007.4.24
+Version: 2007.11.12
Release: 1
Summary: Tools for the Blackbox Window Manager
-URL: http://bbtools.sourceforge.net/
+Url: http://bbtools.sourceforge.net/
Source0: bbdate-0.2.4.tar.bz2
Source1: bbkeys-0.9.0.tar.bz2
Source2: bbmail-0.9.1.tar.bz2
@@ -35,6 +35,7 @@
Patch1: bbsload-0.2.8-gcc41.patch
Patch2: bbacpi-0.1.5-gcc41.patch
Patch3: bbkeys-0.9.0-comparestrliteral.patch
+Patch4: bbtools-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define list bbfreq bbacpi bbweather bbdate bbkeys bbmail bbpager bbppp
bbsload bbtime
@@ -96,6 +97,7 @@
%patch1
%patch2
%patch3
+%patch4 -p1
%build
for i in %{list}; do
@@ -145,8 +147,9 @@
/usr/bin/*
/usr/share/bbtools
/usr/share/bbkeys
-
%changelog
+* Mon Nov 12 2007 - ssommer@xxxxxxx
+- fixed compilation with gcc-4.3
* Tue Apr 24 2007 - pcerny@xxxxxxx
- fixed another comparision with string literal
(found in bbkeys-0.9.0 with gcc-4.2)
++++++ bbtools-gcc43.patch ++++++
diff -Naur bbtools-2007.4.24.org/bbkeys-0.9.0/src/actions.cc
bbtools-2007.4.24/bbkeys-0.9.0/src/actions.cc
--- bbtools-2007.4.24.org/bbkeys-0.9.0/src/actions.cc 2007-11-12
15:12:53.262146000 +0100
+++ bbtools-2007.4.24/bbkeys-0.9.0/src/actions.cc 2007-11-12
15:13:45.054298000 +0100
@@ -24,6 +24,7 @@
#include "actions.hh"
+#include <cstdlib>
#include <iostream>
#include <string>
#include <sstream>
diff -Naur bbtools-2007.4.24.org/bbkeys-0.9.0/src/Config.cpp
bbtools-2007.4.24/bbkeys-0.9.0/src/Config.cpp
--- bbtools-2007.4.24.org/bbkeys-0.9.0/src/Config.cpp 2007-11-12
15:12:53.268135000 +0100
+++ bbtools-2007.4.24/bbkeys-0.9.0/src/Config.cpp 2007-11-12
15:17:16.952188000 +0100
@@ -24,7 +24,7 @@
#include "Config.h"
-#include <string>
+#include <cstring>
#include <iostream>
using std::cout;
diff -Naur bbtools-2007.4.24.org/bbkeys-0.9.0/src/KeyClient.cpp
bbtools-2007.4.24/bbkeys-0.9.0/src/KeyClient.cpp
--- bbtools-2007.4.24.org/bbkeys-0.9.0/src/KeyClient.cpp 2007-11-12
15:12:53.285127000 +0100
+++ bbtools-2007.4.24/bbkeys-0.9.0/src/KeyClient.cpp 2007-11-12
15:19:50.272712000 +0100
@@ -58,6 +58,7 @@
#include <iostream>
#include <algorithm>
#include <vector>
+#include <cstring>
//--------------------------------------------------------
// Constructor/Destructor
diff -Naur bbtools-2007.4.24.org/bbkeys-0.9.0/src/main.cpp
bbtools-2007.4.24/bbkeys-0.9.0/src/main.cpp
--- bbtools-2007.4.24.org/bbkeys-0.9.0/src/main.cpp 2007-11-12
15:12:53.314104000 +0100
+++ bbtools-2007.4.24/bbkeys-0.9.0/src/main.cpp 2007-11-12 15:25:31.044599000
+0100
@@ -22,6 +22,7 @@
// E_O_H_VR
+#include <cstring>
#include "KeyClient.h"
#include "version.h"
diff -Naur bbtools-2007.4.24.org/bbkeys-0.9.0/src/Netclient.cpp
bbtools-2007.4.24/bbkeys-0.9.0/src/Netclient.cpp
--- bbtools-2007.4.24.org/bbkeys-0.9.0/src/Netclient.cpp 2007-11-12
15:12:53.320089000 +0100
+++ bbtools-2007.4.24/bbkeys-0.9.0/src/Netclient.cpp 2007-11-12
15:32:05.514737000 +0100
@@ -24,6 +24,7 @@
// Methods, ideas, implementations taken from Openbox's XAtom class *sigh*
+#include <cstring>
#include "Netclient.h"
Netclient::Netclient (const bt::Display &display)
diff -Naur bbtools-2007.4.24.org/bbmail-0.9.1/src/baseresource.cpp
bbtools-2007.4.24/bbmail-0.9.1/src/baseresource.cpp
--- bbtools-2007.4.24.org/bbmail-0.9.1/src/baseresource.cpp 2007-11-12
15:12:53.449954000 +0100
+++ bbtools-2007.4.24/bbmail-0.9.1/src/baseresource.cpp 2007-11-12
15:44:02.401131000 +0100
@@ -19,7 +19,7 @@
// (See the included file COPYING / GPL-2.0)
//
-#include <string>
+#include <cstring>
#include "baseresource.h"
#include <stdio.h>
#include "Menu.hh"
diff -Naur bbtools-2007.4.24.org/bbmail-0.9.1/src/bbmail.cpp
bbtools-2007.4.24/bbmail-0.9.1/src/bbmail.cpp
--- bbtools-2007.4.24.org/bbmail-0.9.1/src/bbmail.cpp 2007-11-12
15:12:53.410005000 +0100
+++ bbtools-2007.4.24/bbmail-0.9.1/src/bbmail.cpp 2007-11-12
15:35:39.900143000 +0100
@@ -21,7 +21,7 @@
#include "bbmail.h"
#include "config.h"
-#include <string>
+#include <cstring>
extern "C" {
#include <utime.h>
diff -Naur bbtools-2007.4.24.org/bbmail-0.9.1/src/main.cpp
bbtools-2007.4.24/bbmail-0.9.1/src/main.cpp
--- bbtools-2007.4.24.org/bbmail-0.9.1/src/main.cpp 2007-11-12
15:12:53.427981000 +0100
+++ bbtools-2007.4.24/bbmail-0.9.1/src/main.cpp 2007-11-12 15:40:50.548175000
+0100
@@ -19,6 +19,7 @@
// (See the included file COPYING / GPL-2.0)
//
+#include <cstring>
#include "bbmail.h"
#include "main.h"
#include "config.h"
diff -Naur bbtools-2007.4.24.org/bbmail-0.9.1/src/resource.cpp
bbtools-2007.4.24/bbmail-0.9.1/src/resource.cpp
--- bbtools-2007.4.24.org/bbmail-0.9.1/src/resource.cpp 2007-11-12
15:12:53.443967000 +0100
+++ bbtools-2007.4.24/bbmail-0.9.1/src/resource.cpp 2007-11-12
15:49:40.287912000 +0100
@@ -19,6 +19,7 @@
// (See the included file COPYING / GPL-2.0)
//
+#include <cstring>
#include "bbmail.h"
#include "resource.h"
#include "blackboxstyle.h"
diff -Naur bbtools-2007.4.24.org/bbpager-0.4.2/src/Baseresource.cxx
bbtools-2007.4.24/bbpager-0.4.2/src/Baseresource.cxx
--- bbtools-2007.4.24.org/bbpager-0.4.2/src/Baseresource.cxx 2007-11-12
15:12:53.629773000 +0100
+++ bbtools-2007.4.24/bbpager-0.4.2/src/Baseresource.cxx 2007-11-12
16:30:42.722306000 +0100
@@ -19,7 +19,7 @@
// (See the included file COPYING / GPL-2.0)
//
-#include <string>
+#include <cstring>
#include "Baseresource.h"
#include <stdio.h>
#include "Menu.hh"
diff -Naur bbtools-2007.4.24.org/bbpager-0.4.2/src/main.cxx
bbtools-2007.4.24/bbpager-0.4.2/src/main.cxx
--- bbtools-2007.4.24.org/bbpager-0.4.2/src/main.cxx 2007-11-12
15:12:53.631770000 +0100
+++ bbtools-2007.4.24/bbpager-0.4.2/src/main.cxx 2007-11-12
16:26:05.689618000 +0100
@@ -19,6 +19,7 @@
// (See the included file COPYING / GPL-2.0)
//
+#include <cstring>
#include "bbpager.h"
#include "main.h"
#include "config.h"
diff -Naur bbtools-2007.4.24.org/bbpager-0.4.2/src/resource.cxx
bbtools-2007.4.24/bbpager-0.4.2/src/resource.cxx
--- bbtools-2007.4.24.org/bbpager-0.4.2/src/resource.cxx 2007-11-12
15:12:53.598811000 +0100
+++ bbtools-2007.4.24/bbpager-0.4.2/src/resource.cxx 2007-11-12
16:33:19.856017000 +0100
@@ -19,6 +19,7 @@
// (See the included file COPYING / GPL-2.0)
//
+#include <cstring>
#include "resource.h"
#include "blackboxstyle.h"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |