commit dx for openSUSE:Factory
Hello community, here is the log from the commit of package dx for openSUSE:Factory checked in at Fri Feb 27 14:01:47 CET 2009. -------- --- dx/dx.changes 2008-04-14 15:56:29.000000000 +0200 +++ /mounts/work_src_done/STABLE/dx/dx.changes 2009-02-27 11:00:04.000000000 +0100 @@ -1,0 +2,7 @@ +Thu Feb 26 16:42:49 CET 2009 - mseben@suse.cz + +- added errno-init.patch to fix unitialized errno (bnc#479845) +- added missing-sentinel.patch to fix missing sentinel in execlp + call (rpmlint check error) + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- dx-4.4.4-errno-init.patch dx-4.4.4-missing-sentinel.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dx.spec ++++++ --- /var/tmp/diff_new_pack.nD2477/_old 2009-02-27 14:01:08.000000000 +0100 +++ /var/tmp/diff_new_pack.nD2477/_new 2009-02-27 14:01:08.000000000 +0100 @@ -1,10 +1,17 @@ # # spec file for package dx (Version 4.4.4) # -# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. -# This file and all modifications and additions to the pristine -# package are under the same license as the package itself. +# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + # Please submit bugfixes or comments via http://bugs.opensuse.org/ # @@ -18,7 +25,7 @@ %endif BuildRequires: fdupes Version: 4.4.4 -Release: 165 +Release: 224 Summary: IBM Open Visualization Data Explorer License: IBM Public License Group: Productivity/Graphics/Visualization/Other @@ -42,6 +49,10 @@ Patch11: %{name}-%{version}-gcc_43.patch Patch12: %{name}-%{version}-open.patch Patch13: %{name}-%{version}-ac.patch +# PATCH-FIX-UPSTREAM errno-init.patch fix errno init (bnc#479845) +Patch14: %{name}-%{version}-errno-init.patch +# PATCH-FIX-UPSTREAM missing-sentinel.patch fix missing sentinel (rpmlint check error) +Patch15: %{name}-%{version}-missing-sentinel.patch Patch20: dxsamples-%{samplesversion}-java.patch Patch21: dxsamples-%{samplesversion}-DESTDIR.patch Patch22: dxsamples-%{samplesversion}-rights.patch @@ -140,6 +151,8 @@ %patch11 %patch12 %patch13 +%patch14 +%patch15 # samples cd ../dxsamples-%{samplesversion} %patch20 @@ -246,6 +259,10 @@ /opt/dx/samples/*/*/*/*.c %changelog +* Thu Feb 26 2009 mseben@suse.cz +- added errno-init.patch to fix unitialized errno (bnc#479845) +- added missing-sentinel.patch to fix missing sentinel in execlp + call (rpmlint check error) * Mon Apr 14 2008 schwab@suse.de - Fix configure script. * Fri Feb 15 2008 lmichnovic@suse.cz @@ -256,7 +273,7 @@ - fixed third argument of open (*open.patch) * Mon Oct 29 2007 pgajdos@suse.cz - fixed build with gcc 4.3 (gcc-43.patch) -* Sat Aug 11 2007 meissner@suse.de +* Fri Aug 10 2007 meissner@suse.de - fixed 3 array overflows (index 3 instead of 2), and one misplaced ) causing undefined behaviour. - build with ImageMagick too @@ -297,7 +314,7 @@ - update dx to version 4.4.4 * Many bug fixes, few features. - obsoletes matrix.patch -* Tue Jun 27 2006 lmichnovic@suse.cz +* Mon Jun 26 2006 lmichnovic@suse.cz - fixed wrong computation of a matrix (matrix.patch) [#188294] * Fri May 19 2006 lmichnovic@suse.cz - repacked tarball; problematic files has now correct licence [#170130] @@ -317,7 +334,7 @@ - changed needforbuild to build package with flex-old * Mon Sep 26 2005 lmichnovic@suse.cz - fixed uninitialized variables and implicit declaration -* Mon Sep 26 2005 ro@suse.de +* Sun Sep 25 2005 ro@suse.de - fix implicit declaration * Fri Apr 22 2005 meissner@suse.de - Original author cannot count to 4, fixed single @@ -356,7 +373,7 @@ java/usermacros/Makefile.am - used mesa-devel-packages in neededforbuild - java support is not built because it hardly depends on netsacape -* Wed Aug 07 2002 ro@suse.de +* Tue Aug 06 2002 ro@suse.de - no more netscape4 - no more netscape4 support * Wed Apr 17 2002 pmladek@suse.cz - fixed to compile with gcc-3.1 ++++++ dx-4.4.4-errno-init.patch ++++++ --- src/exec/dpexec/lex.c +++ src/exec/dpexec/lex.c @@ -504,6 +504,7 @@ for (;;) { yyleng = 0; + errno = 0; c = input(); ++++++ dx-4.4.4-missing-sentinel.patch ++++++ --- src/uipp/base/StartWebBrowser.C +++ src/uipp/base/StartWebBrowser.C @@ -147,7 +147,7 @@ if (child == 0) { int grandchild = fork(); if (grandchild == 0) { - int ret = execlp(webApp, webApp, URL, NULL); + int ret = execlp(webApp, webApp, URL, (char *)NULL); if (!ret) fprintf(stderr, "Unable to start web browser.\n"); exit (0); } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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@Hilbert.suse.de