Mailinglist Archive: opensuse-commit (1159 mails)
| < Previous | Next > |
commit tar
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Wed, 03 Oct 2007 01:13:52 +0200
- Message-id: <20071002231352.BB2C4678182@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package tar
checked in at Wed Oct 3 01:13:52 CEST 2007.
--------
--- tar/tar.changes 2007-08-31 12:57:08.000000000 +0200
+++ /mounts/work_src_done/STABLE/tar/tar.changes 2007-10-01 10:48:34.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Oct 1 10:48:23 CEST 2007 - mkoenig@xxxxxxx
+
+- fix build with gcc-4.3
+
+-------------------------------------------------------------------
New:
----
tar-gcc43.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ tar.spec ++++++
--- /var/tmp/diff_new_pack.x19963/_old 2007-10-03 01:13:41.000000000 +0200
+++ /var/tmp/diff_new_pack.x19963/_new 2007-10-03 01:13:41.000000000 +0200
@@ -12,14 +12,14 @@
Name: tar
BuildRequires: help2man
-URL: http://www.gnu.org/software/tar/
+Url: http://www.gnu.org/software/tar/
License: GPL v2 or later
Group: System/Base
Provides: base:/bin/tar
PreReq: %install_info_prereq
-Autoreqprov: on
+AutoReqProv: on
Version: 1.17
-Release: 17
+Release: 22
Summary: GNU implementation of tar ((t)ape (ar)chiver)
Source0: %name-%version.tar.bz2
Patch0: tar-disable_languages.patch
@@ -28,6 +28,7 @@
Patch3: tar-1.17-testsuite12.patch
Patch4: tar-1.17-paxlib-owl-alloca.patch
Patch5: tar-1.15.1-CVE-2001-1267.patch
+Patch6: tar-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define _bindir /bin
@@ -69,6 +70,7 @@
%patch3
%patch4
%patch5 -p0
+%patch6
%build
rm -f po/no.* po/ky.*
@@ -96,7 +98,6 @@
%defattr(-, root, root)
%_bindir/tar
%doc README* ABOUT-NLS AUTHORS COPYING NEWS THANKS ChangeLog PORTS TODO
-
%_infodir/tar.info*.gz
%_mandir/man1/tar.1.gz
@@ -108,8 +109,9 @@
%clean
rm -rf $RPM_BUILD_ROOT
-
%changelog
+* Mon Oct 01 2007 - mkoenig@xxxxxxx
+- fix build with gcc-4.3
* Fri Aug 31 2007 - mkoenig@xxxxxxx
- fixed another directory traversal vulnerability, CVE-2001-1267,
CVE-2002-0399, [#29973]
++++++ tar-gcc43.patch ++++++
--- lib/argp.h.orig 2007-09-25 11:04:18.000000000 +0200
+++ lib/argp.h 2007-09-25 11:06:24.000000000 +0200
@@ -580,7 +580,11 @@
# endif
# ifndef ARGP_EI
-# define ARGP_EI extern __inline__
+# if defined __GNUC_STDC_INLINE__
+# define ARGP_EI extern __inline__ __attribute__((__gnu_inline__))
+# else
+# define ARGP_EI extern __inline__
+# endif
# endif
ARGP_EI void
--- lib/argp-fmtstream.h.orig 2007-09-25 11:06:49.000000000 +0200
+++ lib/argp-fmtstream.h 2007-09-25 11:07:35.000000000 +0200
@@ -198,8 +198,12 @@
#endif
#ifndef ARGP_FS_EI
+#ifdef __GNUC_STDC_INLINE__
+#define ARGP_FS_EI extern inline __attribute__((__gnu_inline__))
+#else
#define ARGP_FS_EI extern inline
#endif
+#endif
ARGP_FS_EI size_t
__argp_fmtstream_write (argp_fmtstream_t __fs,
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |