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 openpkg-web Date: 06-Aug-2003 10:52:45
Branch: HEAD Handle: 2003080609524302
Added files:
openpkg-src/openssl openssl.patch
Modified files:
openpkg-src/openssl openssl.spec
openpkg-web news.txt
Log:
not all platform like zero modulus operations, so fix the loop
Summary:
Revision Changes Path
1.11 +11 -0 openpkg-src/openssl/openssl.patch
1.46 +3 -1 openpkg-src/openssl/openssl.spec
1.6052 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openssl/openssl.patch
============================================================================
$ cvs diff -u -r0 -r1.11 openssl.patch
--- /dev/null 2003-08-06 10:52:45.000000000 +0200
+++ openssl.patch 2003-08-06 10:52:45.000000000 +0200
@@ -0,0 +1,11 @@
+--- crypto/bn/bn_prime.pl.orig Wed Feb 16 14:24:06 2000
++++ crypto/bn/bn_prime.pl Wed Aug 6 10:49:34 2003
+@@ -11,7 +11,7 @@
+ $p+=2;
+ $s=int(sqrt($p));
+
+- for ($i=0; $primes[$i]<=$s; $i++)
++ for ($i=0; defined($primes[$i]) && $primes[$i]<=$s; $i++)
+ {
+ next loop if (($p%$primes[$i]) == 0);
+ }
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openssl/openssl.spec
============================================================================
$ cvs diff -u -r1.45 -r1.46 openssl.spec
--- openpkg-src/openssl/openssl.spec 23 Jul 2003 13:32:09 -0000 1.45
+++ openpkg-src/openssl/openssl.spec 6 Aug 2003 08:52:45 -0000 1.46
@@ -33,7 +33,7 @@
Group: Cryptography
License: BSD-style
Version: 0.9.7b
-Release: 20030723
+Release: 20030806
# package options
%option with_zlib no
@@ -42,6 +42,7 @@
# list of sources
Source0: ftp://ftp.openssl.org/source/openssl-%{version}.tar.gz
+Patch0: openssl.patch
# build information
Prefix: %{l_prefix}
@@ -62,6 +63,7 @@
%prep
%setup -q
+ %patch -p0
%{l_shtool} subst \
-e 's;-m486;-march=i486;g' \
-e 's;-DZLIB;%{l_cppflags} -DZLIB;' \
@@ .
patch -p0 <<'@@ .'
Index: openpkg-web/news.txt
============================================================================
$ cvs diff -u -r1.6051 -r1.6052 news.txt
--- openpkg-web/news.txt 6 Aug 2003 07:13:45 -0000 1.6051
+++ openpkg-web/news.txt 6 Aug 2003 08:52:43 -0000 1.6052
@@ -1,3 +1,4 @@
+06-Aug-2003: Upgraded package: P<openssl-0.9.7b-20030806>
06-Aug-2003: Upgraded package: P<delegate-8.5.9-20030806>
06-Aug-2003: Upgraded package: P<pgadmin-0.8.0.20030806-20030806>
06-Aug-2003: Upgraded package: P<pv-0.6.2-20030806>
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]