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: 15-May-2006 20:57:08
Branch: HEAD Handle: 2006051519570800
Modified files:
openpkg-src/openpkg HISTORY openssl.patch
Log:
fix building of OpenSSL by reducing used Perl features (integer.pm,
Cwd.pm)
Summary:
Revision Changes Path
1.331 +1 -1 openpkg-src/openpkg/HISTORY
1.4 +19 -0 openpkg-src/openpkg/openssl.patch
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/HISTORY
============================================================================
$ cvs diff -u -r1.330 -r1.331 HISTORY
--- openpkg-src/openpkg/HISTORY 15 May 2006 06:26:49 -0000 1.330
+++ openpkg-src/openpkg/HISTORY 15 May 2006 18:57:08 -0000 1.331
@@ -2,7 +2,7 @@
2006
====
-20060515 fix building of OpenSSL by reducing used Perl features (integer.pm)
+20060515 fix building of OpenSSL by reducing used Perl features (integer.pm,
Cwd.pm)
20060514 fix building of OpenSSL by reducing used Perl features (find.pl,
strict.pm)
20060513 build cURL with SSL support to allow it to fetch from HTTPS URLs
20060513 major change: build and install OpenSSL 0.9.8b (for adding SSL
support to cURL)
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openssl.patch
============================================================================
$ cvs diff -u -r1.3 -r1.4 openssl.patch
--- openpkg-src/openpkg/openssl.patch 15 May 2006 06:26:50 -0000 1.3
+++ openpkg-src/openpkg/openssl.patch 15 May 2006 18:57:08 -0000 1.4
@@ -42,3 +42,22 @@
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);
+
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]