OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 14-Oct-2007 09:43:03
Branch: HEAD Handle: 2007101408430201
Modified files:
openpkg-src/openpkg HISTORY openpkg.spec openssl.patch
Log:
fix OpenSSL patch (some important portability related hunks were lost)
Summary:
Revision Changes Path
1.478 +1 -0 openpkg-src/openpkg/HISTORY
1.614 +1 -1 openpkg-src/openpkg/openpkg.spec
1.9 +40 -0 openpkg-src/openpkg/openssl.patch
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/HISTORY
============================================================================
$ cvs diff -u -r1.477 -r1.478 HISTORY
--- openpkg-src/openpkg/HISTORY 11 Oct 2007 20:51:15 -0000 1.477
+++ openpkg-src/openpkg/HISTORY 14 Oct 2007 07:43:02 -0000 1.478
@@ -2,6 +2,7 @@
2007
====
+20071014 fix OpenSSL patch (some important portability related hunks were
lost)
20071011 upgrade to OpenSSL 0.9.8f
20071011 add support for FreeBSD 8.0-CURRENT
20071010 upgrade to GNU tar 1.19
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openpkg.spec
============================================================================
$ cvs diff -u -r1.613 -r1.614 openpkg.spec
--- openpkg-src/openpkg/openpkg.spec 11 Oct 2007 20:51:15 -0000 1.613
+++ openpkg-src/openpkg/openpkg.spec 14 Oct 2007 07:43:02 -0000 1.614
@@ -39,7 +39,7 @@
# o any cc(1)
# the package version/release
-%define V_openpkg 20071011
+%define V_openpkg 20071014
# the used software versions
%define V_rpm 4.2.1
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openssl.patch
============================================================================
$ cvs diff -u -r1.8 -r1.9 openssl.patch
--- openpkg-src/openpkg/openssl.patch 11 Oct 2007 20:51:16 -0000 1.8
+++ openpkg-src/openpkg/openssl.patch 14 Oct 2007 07:43:03 -0000 1.9
@@ -1,6 +1,46 @@
+Index: crypto/objects/obj_dat.pl
+--- crypto/objects/obj_dat.pl.orig 2005-08-29 01:20:47 +0200
++++ crypto/objects/obj_dat.pl 2006-05-15 08:03:44 +0200
+@@ -1,9 +1,5 @@
+ #!/usr/local/bin/perl
+
+-# fixes bug in floating point emulation on sparc64 when
+-# this script produces off-by-one output on sparc64
+-use integer;
+-
+ sub obj_cmp
+ {
+ local(@a,@b,$_,$r);
+Index: util/mklink.pl
+--- util/mklink.pl.orig 2006-05-15 20:46:35 +0200
++++ util/mklink.pl 2006-05-15 20:48:07 +0200
+@@ -15,13 +15,12 @@
+ # Apart from this, this script should be able to handle even the most
+ # pathological cases.
+
+-use Cwd;
+-
+ my $from = shift;
+ my @files = @ARGV;
+
+ my @from_path = split(/[\\\/]/, $from);
+-my $pwd = getcwd();
++my $pwd = `pwd`;
++$pwd =~ s/\n$//s;
+ chomp($pwd);
+ my @pwd_path = split(/[\\\/]/, $pwd);
+
Index: Configure
--- Configure.orig 2007-10-11 22:43:07 +0200
+++ Configure 2007-10-11 22:43:07 +0200
+@@ -6,7 +6,6 @@
+ ##
+
+ require 5.000;
+-use strict;
+
+ # see INSTALL for instructions.
+
@@ -33,6 +33,7 @@
# (Default: KRB5_DIR/include)
# --with-krb5-flavor Declare what flavor of Kerberos 5 is used. Currently
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [email protected]