OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 11-Feb-2004 10:42:41
Branch: HEAD Handle: 2004021109424100
Added files:
openpkg-src/star star.patch
Modified files:
openpkg-src/star star.spec
Log:
include bugfix patch from Fedora
Summary:
Revision Changes Path
1.1 +12 -0 openpkg-src/star/star.patch
1.2 +2 -0 openpkg-src/star/star.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/star/star.patch
============================================================================
$ cvs diff -u -r0 -r1.1 star.patch
--- /dev/null 2004-02-11 10:42:41.000000000 +0100
+++ star.patch 2004-02-11 10:42:41.000000000 +0100
@@ -0,0 +1,12 @@
+Index: lib/strtod.c
+--- lib/strtod.c.orig 2002-04-20 16:06:19.000000000 +0200
++++ lib/strtod.c 2004-02-11 10:40:45.000000000 +0100
+@@ -604,7 +604,7 @@
+ if (!(x & 1)) {
+ k++;
+ x >>= 1;
+- if (!x & 1)
++ if (!(x & 1))
+ return 32;
+ }
+ *y = x;
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/star/star.spec
============================================================================
$ cvs diff -u -r1.1 -r1.2 star.spec
--- openpkg-src/star/star.spec 11 Feb 2004 09:39:46 -0000 1.1
+++ openpkg-src/star/star.spec 11 Feb 2004 09:42:41 -0000 1.2
@@ -42,6 +42,7 @@
# list of sources
Source0: ftp://ftp.berlios.de/pub/star/alpha/star-%{version}.tar.bz2
+Patch0: star.patch
# build information
Prefix: %{l_prefix}
@@ -73,6 +74,7 @@
%prep
%setup -q -n star-%{V_major}
+ %patch -p0
%build
%{l_make} %{l_mflags -O} \
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]