2014-06-02 17:21:22 +02:00
|
|
|
--- ./Configure.orig 2014-05-26 13:34:18.000000000 +0000
|
|
|
|
+++ ./Configure 2014-06-02 14:12:24.160911277 +0000
|
2011-05-16 16:18:55 +02:00
|
|
|
@@ -112,7 +112,7 @@ paths="$paths /usr/5bin /etc /usr/gnu/bi
|
2008-01-12 02:01:53 +01:00
|
|
|
paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
|
|
|
|
paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
|
|
|
|
paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin"
|
|
|
|
-paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
|
|
|
|
+paths="$paths /etc /usr/lib /usr/lib64 /usr/ucblib /lib /usr/ccs/lib"
|
|
|
|
paths="$paths /sbin /usr/sbin /usr/libexec"
|
|
|
|
paths="$paths /system/gnu_library/bin"
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -1355,7 +1355,7 @@ loclibpth="/usr/local/lib /opt/local/lib
|
2008-01-12 02:01:53 +01:00
|
|
|
loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
|
|
|
|
|
|
|
|
: general looking path for locating libraries
|
|
|
|
-glibpth="/lib /usr/lib $xlibpth"
|
|
|
|
+glibpth="/lib /usr/lib /lib64 /usr/lib64 $xlibpth"
|
|
|
|
glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
|
|
|
|
test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
|
|
|
|
test -f /shlib/libc.so && glibpth="/shlib $glibpth"
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -2446,7 +2446,7 @@ uname
|
2008-01-12 02:01:53 +01:00
|
|
|
zip
|
|
|
|
"
|
|
|
|
pth=`echo $PATH | sed -e "s/$p_/ /g"`
|
2014-06-02 17:21:22 +02:00
|
|
|
-pth="$pth $sysroot/lib $sysroot/usr/lib"
|
|
|
|
+pth="$pth $sysroot/lib $sysroot/usr/lib $sysroot/lib64 $sysroot/usr/lib64"
|
2008-01-12 02:01:53 +01:00
|
|
|
for file in $loclist; do
|
|
|
|
eval xxx=\$$file
|
|
|
|
case "$xxx" in
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -11435,7 +11435,7 @@ void xxx(int n, ...)
|
2009-10-26 17:04:51 +01:00
|
|
|
va_start(args, n);
|
|
|
|
exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
|
|
|
|
}
|
|
|
|
-int main() { xxx(1, "foo"); }
|
|
|
|
+int main() { xxx(1, "foo"); return 0; }
|
|
|
|
|
|
|
|
#else /* I_VARARGS */
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -11447,7 +11447,7 @@ va_dcl
|
2009-10-26 17:04:51 +01:00
|
|
|
va_start(args);
|
|
|
|
exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
|
|
|
|
}
|
|
|
|
-int main() { xxx("foo"); }
|
|
|
|
+int main() { xxx("foo"); return 0; }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -19458,14 +19458,20 @@ int main(int argc, char *argv[])
|
2008-01-12 02:01:53 +01:00
|
|
|
}
|
|
|
|
EOCP
|
|
|
|
set try
|
|
|
|
+ # this is really stupid, but we have to link in the -ldb to have
|
|
|
|
+ # the above program succeed
|
|
|
|
+ _old_libs="$libs"
|
|
|
|
+ libs="$libs -ldb"
|
|
|
|
if eval $compile_ok && $run ./try; then
|
|
|
|
echo 'Looks OK.' >&4
|
|
|
|
+ libs="$_old_libs"
|
|
|
|
set `$run ./try 1`
|
|
|
|
db_version_major=$1
|
|
|
|
db_version_minor=$2
|
|
|
|
db_version_patch=$3
|
|
|
|
else
|
|
|
|
echo "I can't use Berkeley DB with your <db.h>. I'll disable Berkeley DB." >&4
|
|
|
|
+ libs="$_old_libs"
|
|
|
|
i_db=$undef
|
|
|
|
case " $libs " in
|
|
|
|
*"-ldb "*)
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -19508,7 +19514,7 @@ int main()
|
2008-01-12 02:01:53 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
EOCP
|
|
|
|
- if $cc $ccflags -c try.c >try.out 2>&1 ; then
|
|
|
|
+ if $cc $ccflags -c try.c -ldb >try.out 2>&1 ; then
|
|
|
|
if $contains warning try.out >>/dev/null 2>&1 ; then
|
|
|
|
db_hashtype='int'
|
|
|
|
else
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -19553,7 +19559,7 @@ int main()
|
2008-01-12 02:01:53 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
EOCP
|
|
|
|
- if $cc $ccflags -c try.c >try.out 2>&1 ; then
|
|
|
|
+ if $cc $ccflags -c try.c -ldb >try.out 2>&1 ; then
|
|
|
|
if $contains warning try.out >>/dev/null 2>&1 ; then
|
|
|
|
db_prefixtype='int'
|
|
|
|
else
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -23743,7 +23749,7 @@ passcat='$passcat'
|
2008-01-12 02:01:53 +01:00
|
|
|
patchlevel='$patchlevel'
|
|
|
|
path_sep='$path_sep'
|
|
|
|
perl5='$perl5'
|
|
|
|
-perl='$perl'
|
|
|
|
+perl='perl'
|
|
|
|
perl_patchlevel='$perl_patchlevel'
|
2011-05-16 16:18:55 +02:00
|
|
|
perl_static_inline='$perl_static_inline'
|
2008-01-12 02:01:53 +01:00
|
|
|
perladmin='$perladmin'
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./SuSE/SuSEconfig.perl.orig 2014-06-02 14:10:31.871498553 +0000
|
|
|
|
+++ ./SuSE/SuSEconfig.perl 2014-06-02 14:10:31.871498553 +0000
|
2008-01-12 02:01:53 +01:00
|
|
|
@@ -0,0 +1,76 @@
|
|
|
|
+#! /bin/bash
|
|
|
|
+#
|
|
|
|
+# Copyright (c) 1996 S.u.S.E. Gmbh Fuerth, Germany. All rights reserved.
|
|
|
|
+#
|
|
|
|
+# Author: Burchard Steinbild <bs@suse.de>, 1996
|
|
|
|
+# Martin Scherbaum <maddin@suse.de>, 5/1997
|
|
|
|
+# Ruediger Oertel <ro@suse.de>, 7/1998
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# Variables in /etc/sysconfig/suseconfig used by this script are:
|
|
|
|
+# CREATE_PERLLOCAL_POD
|
|
|
|
+#
|
|
|
|
+# This script calls the scripts:
|
|
|
|
+# /usr/sbin/perllocal.suse which comes from the package perl
|
|
|
|
+#
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# check if we are started as root
|
|
|
|
+# only one of UID and USER must be set correctly
|
|
|
|
+#
|
|
|
|
+if test "$UID" != 0 -a "$USER" != root; then
|
|
|
|
+ echo "You must be root to start $0."
|
|
|
|
+ exit 1
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# SuSEconfig sometimes sets the variable CHECK_NEWPACKAGE. If it is set
|
|
|
|
+# to false, we don't have to do anything.
|
|
|
|
+#
|
|
|
|
+test "$CHECK_NEWPACKAGE" = false && exit 0
|
|
|
|
+
|
|
|
|
+test -f /etc/sysconfig/suseconfig || { echo "No /etc/sysconfig/suseconfig found." && exit 1 ; }
|
|
|
|
+. /etc/sysconfig/suseconfig
|
|
|
|
+
|
|
|
|
+# this skript only works in a running system.
|
|
|
|
+
|
|
|
|
+test -n "$ROOT" && exit 0
|
|
|
|
+
|
|
|
|
+perl -e 'exit 0' 2>/dev/null || { echo "Perl not found." && exit 0 ; }
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# see if we may do any work
|
|
|
|
+#
|
|
|
|
+test -n "$CREATE_PERLLOCAL_POD" -a "$CREATE_PERLLOCAL_POD" = "yes" \
|
|
|
|
+ || { echo "disabled in sysconfig/suseconfig" && exit 1 ; }
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# check if anything to add
|
|
|
|
+#
|
|
|
|
+PERLLOCAL_PATH=`perl -V:installarchlib | sed -e "s/.*='\(.*\)'.*/\1/"`
|
|
|
|
+
|
|
|
|
+NEEDED="false"
|
|
|
|
+
|
|
|
|
+if test -d /var/adm/perl-modules ; then
|
|
|
|
+ if test /var/adm/perl-modules -nt $PERLLOCAL_PATH/perllocal.pod ; then
|
|
|
|
+ NEEDED="true"
|
|
|
|
+ elif test ! -f $PERLLOCAL_PATH/perllocal.pod ; then
|
|
|
|
+ NEEDED="true"
|
|
|
|
+ fi
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# now call the working script
|
|
|
|
+#
|
|
|
|
+if "$NEEDED" = "true" ; then
|
|
|
|
+ if test -x /usr/lib/perl5/perllocal.SuSE ; then
|
|
|
|
+ /usr/lib/perl5/perllocal.SuSE
|
|
|
|
+ pod2man $PERLLOCAL_PATH/perllocal.pod | gzip > /usr/share/man/man3/perllocal.3pm.gz
|
|
|
|
+ else
|
|
|
|
+ echo "SuSEconfig.perl: /usr/lib/perl5/perllocal.SuSE not found!"
|
|
|
|
+ fi
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+#
|
|
|
|
+# end of file SuSEconfig.perl
|
|
|
|
+#
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./SuSE/perllocal.SuSE.orig 2014-06-02 14:10:31.871498553 +0000
|
|
|
|
+++ ./SuSE/perllocal.SuSE 2014-06-02 14:10:31.871498553 +0000
|
2008-01-12 02:01:53 +01:00
|
|
|
@@ -0,0 +1,84 @@
|
|
|
|
+#!/usr/bin/perl
|
|
|
|
+# Copyright (c) 1998 S.u.S.E. Gmbh Fuerth, Germany. All rights reserved.
|
|
|
|
+#
|
|
|
|
+# Author: Ruediger Oertel <ro@suse.de>, 1998
|
|
|
|
+#
|
|
|
|
+
|
|
|
|
+use Config;
|
|
|
|
+
|
|
|
|
+sub ReadFile {
|
|
|
|
+ local (*IF,*modules) = @_;
|
|
|
|
+
|
|
|
|
+ while(<IF>) {
|
|
|
|
+ chomp ($_);
|
|
|
|
+ next if (/^$/);
|
|
|
|
+ if (/^=head2.*$/) {
|
|
|
|
+ ($front,$rear) = split (': ',$_);
|
|
|
|
+ $front =~ s/^=head2\s*//;
|
|
|
|
+ $modules{$rear} = "$front";
|
|
|
|
+ } elsif (/^=over [0-9]*$/) {
|
|
|
|
+ ($dummy,$num) = split ('\s',$_);
|
|
|
|
+ $curnum = 0;
|
|
|
|
+ } elsif (/^C<.*:.*>$/) {
|
|
|
|
+ $entry = $_;
|
|
|
|
+ $curnum++;
|
|
|
|
+ $modules{$rear} .= "\0$entry";
|
|
|
|
+ } elsif (/^=back$/) {
|
|
|
|
+ ;
|
|
|
|
+ } elsif (/^=item \*$/) {
|
|
|
|
+ ;
|
|
|
|
+ } else {
|
|
|
|
+ print "SuSEconfig.perl: parsing perllocal:\n";
|
|
|
|
+ print "ignoring line: $_\n";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return %modules;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+local (%allmodules);
|
|
|
|
+
|
|
|
|
+if (open (IF, "<$Config{'installarchlib'}/perllocal.pod")) {
|
|
|
|
+ %allmodules = ReadFile(*IF,*allmodules);
|
|
|
|
+}
|
|
|
|
+close (IF);
|
|
|
|
+
|
|
|
|
+opendir (DIR, "/var/adm/perl-modules");
|
|
|
|
+while ($dirent = readdir(DIR)) {
|
|
|
|
+ next if ($dirent =~ /^\./);
|
|
|
|
+ open (IF , "/var/adm/perl-modules/$dirent");
|
|
|
|
+ %allmodules = ReadFile(*IF,*allmodules);
|
|
|
|
+ close (IF);
|
|
|
|
+}
|
|
|
|
+closedir (DIR);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+if (open (OF, ">$Config{'installarchlib'}/perllocal.pod")) {
|
|
|
|
+ foreach $key (keys(%allmodules)) {
|
|
|
|
+ $name = $key;
|
|
|
|
+ $name =~ s/^.*L\<//;
|
|
|
|
+ $name =~ s/.*\|//;
|
|
|
|
+ $name =~ s/>$//;
|
|
|
|
+ $name =~ s/::/\//;
|
|
|
|
+ @entries = split ('\0',$allmodules{$key});
|
|
|
|
+ $ipath = $entries[1];
|
|
|
|
+ $ipath =~ s/^.*\:\s//;
|
|
|
|
+ $ipath =~ s/>$//;
|
|
|
|
+
|
|
|
|
+ # test if the module is really there, else skip
|
|
|
|
+ if ( -d "$ipath/$Config{'archname'}/auto/$name" ||
|
|
|
|
+ -d "$Config{'installarchlib'}/auto/$name" ) {
|
|
|
|
+ $num = $#entries;
|
|
|
|
+ print OF "=head2 ",shift(@entries),": $key\n\n";
|
|
|
|
+ print OF "=over $num\n\n";
|
|
|
|
+ while ($_ = shift(@entries)) {
|
|
|
|
+ print OF "=item *\n\n";
|
|
|
|
+ print OF "$_\n\n";
|
|
|
|
+ }
|
|
|
|
+ print OF "=back\n\n";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ close (OF);
|
|
|
|
+} else {
|
|
|
|
+ print "SuSEconfig.perl: Can't write to file $Config{'installarchlib'}/perllocal.pod !\n\n";
|
|
|
|
+}
|
|
|
|
+
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./SuSE/sysconfig.suseconfig-perl.orig 2014-06-02 14:10:31.871498553 +0000
|
|
|
|
+++ ./SuSE/sysconfig.suseconfig-perl 2014-06-02 14:10:31.871498553 +0000
|
2008-01-12 02:01:53 +01:00
|
|
|
@@ -0,0 +1,8 @@
|
|
|
|
+## Path: System/SuSEconfig
|
|
|
|
+## Type: yesno
|
|
|
|
+## Default: yes
|
|
|
|
+## Config: perl
|
|
|
|
+#
|
|
|
|
+# May SuSEconfig modify your perllocal.pod? (yes/no)
|
|
|
|
+#
|
|
|
|
+CREATE_PERLLOCAL_POD="yes"
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./cpan/CPAN/lib/CPAN.pm.orig 2014-05-26 13:34:18.000000000 +0000
|
|
|
|
+++ ./cpan/CPAN/lib/CPAN.pm 2014-06-02 14:10:31.872498486 +0000
|
2012-05-23 17:21:30 +02:00
|
|
|
@@ -65,7 +65,7 @@ sub _uniq;
|
2010-04-01 18:16:33 +02:00
|
|
|
|
|
|
|
no lib ".";
|
|
|
|
|
|
|
|
-require Mac::BuildTools if $^O eq 'MacOS';
|
|
|
|
+#require Mac::BuildTools if $^O eq 'MacOS';
|
|
|
|
if ($ENV{PERL5_CPAN_IS_RUNNING} && $$ != $ENV{PERL5_CPAN_IS_RUNNING}) {
|
|
|
|
$ENV{PERL5_CPAN_IS_RUNNING_IN_RECURSION} ||= $ENV{PERL5_CPAN_IS_RUNNING};
|
|
|
|
my @rec = _uniq split(/,/, $ENV{PERL5_CPAN_IS_RUNNING_IN_RECURSION}), $$;
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./cpan/Compress-Raw-Zlib/config.in.orig 2014-01-31 21:55:50.000000000 +0000
|
|
|
|
+++ ./cpan/Compress-Raw-Zlib/config.in 2014-06-02 14:10:31.872498486 +0000
|
2008-01-12 02:01:53 +01:00
|
|
|
@@ -16,9 +16,9 @@
|
|
|
|
# Setting the Gzip OS Code
|
|
|
|
#
|
|
|
|
|
|
|
|
-BUILD_ZLIB = True
|
|
|
|
-INCLUDE = ./zlib-src
|
|
|
|
-LIB = ./zlib-src
|
|
|
|
+BUILD_ZLIB = False
|
|
|
|
+INCLUDE = /usr/include
|
|
|
|
+LIB = /usr/lib
|
|
|
|
|
|
|
|
OLD_ZLIB = False
|
|
|
|
GZIP_OS_CODE = AUTO_DETECT
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./cpan/Encode/bin/enc2xs.orig 2014-05-26 13:34:19.000000000 +0000
|
|
|
|
+++ ./cpan/Encode/bin/enc2xs 2014-06-02 14:10:31.872498486 +0000
|
|
|
|
@@ -1010,13 +1010,13 @@ sub make_configlocal_pm {
|
2008-01-18 19:26:56 +01:00
|
|
|
$LocalMod{$enc} ||= $mod;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
- File::Find::find({wanted => $wanted}, @INC);
|
|
|
|
+ File::Find::find({wanted => $wanted}, grep {$_ ne '.'} @INC);
|
|
|
|
$_ModLines = "";
|
|
|
|
for my $enc ( sort keys %LocalMod ) {
|
|
|
|
$_ModLines .=
|
|
|
|
qq(\$Encode::ExtModule{'$enc'} = "$LocalMod{$enc}";\n);
|
|
|
|
}
|
|
|
|
- warn $_ModLines;
|
|
|
|
+ warn $_ModLines if $_ModLines ne '';
|
|
|
|
$_LocalVer = _mkversion();
|
|
|
|
$_E2X = find_e2x();
|
|
|
|
$_Inc = $INC{"Encode.pm"};
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./cpan/File-Temp/lib/File/Temp.pm.orig 2014-05-26 13:34:19.000000000 +0000
|
|
|
|
+++ ./cpan/File-Temp/lib/File/Temp.pm 2014-06-02 14:10:31.872498486 +0000
|
|
|
|
@@ -16,7 +16,7 @@ use Fcntl 1.03;
|
2010-04-01 18:16:33 +02:00
|
|
|
use IO::Seekable; # For SEEK_*
|
|
|
|
use Errno;
|
2013-06-06 15:35:18 +02:00
|
|
|
use Scalar::Util 'refaddr';
|
2010-04-01 18:16:33 +02:00
|
|
|
-require VMS::Stdio if $^O eq 'VMS';
|
|
|
|
+#require VMS::Stdio if $^O eq 'VMS';
|
|
|
|
|
|
|
|
# pre-emptively load Carp::Heavy. If we don't when we run out of file
|
|
|
|
# handles and attempt to call croak() we get an error message telling
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./cpan/Sys-Syslog/t/syslog.t.orig 2014-01-31 21:55:50.000000000 +0000
|
|
|
|
+++ ./cpan/Sys-Syslog/t/syslog.t 2014-06-02 14:10:31.872498486 +0000
|
2013-06-06 15:35:18 +02:00
|
|
|
@@ -220,6 +220,7 @@ SKIP: {
|
2010-04-01 18:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
+ $r = 1 unless -e '/dev/log';
|
|
|
|
ok( $r, "setlogsock() should return true: '$r'" );
|
|
|
|
}
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./cpan/libnet/Net/Config.pm.orig 2014-05-26 13:34:19.000000000 +0000
|
|
|
|
+++ ./cpan/libnet/Net/Config.pm 2014-06-02 14:10:31.873498422 +0000
|
2010-04-01 18:16:33 +02:00
|
|
|
@@ -37,7 +37,7 @@ eval { local $SIG{__DIE__}; require Net:
|
|
|
|
# Try to get as much configuration info as possible from InternetConfig
|
|
|
|
#
|
|
|
|
$^O eq 'MacOS' and eval <<TRY_INTERNET_CONFIG;
|
|
|
|
-use Mac::InternetConfig;
|
|
|
|
+#use Mac::InternetConfig;
|
|
|
|
|
|
|
|
{
|
|
|
|
my %nc = (
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./dist/ExtUtils-Install/lib/ExtUtils/Packlist.pm.orig 2014-05-26 13:34:19.000000000 +0000
|
|
|
|
+++ ./dist/ExtUtils-Install/lib/ExtUtils/Packlist.pm 2014-06-02 14:10:31.873498422 +0000
|
2012-05-23 17:21:30 +02:00
|
|
|
@@ -207,8 +207,11 @@ foreach my $key (sort(keys(%{$self->{dat
|
2010-04-01 18:16:33 +02:00
|
|
|
{
|
|
|
|
if (! -e $key)
|
|
|
|
{
|
|
|
|
- push(@missing, $key);
|
|
|
|
- delete($self->{data}{$key}) if ($remove);
|
|
|
|
+ if (($key !~ m!/man/!) || ! -e "$key.gz")
|
|
|
|
+ {
|
|
|
|
+ push(@missing, $key);
|
|
|
|
+ delete($self->{data}{$key}) if ($remove);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(@missing);
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./ext/DynaLoader/hints/linux.pl.orig 2014-01-31 21:55:51.000000000 +0000
|
|
|
|
+++ ./ext/DynaLoader/hints/linux.pl 2014-06-02 14:10:31.873498422 +0000
|
2010-04-01 18:16:33 +02:00
|
|
|
@@ -2,4 +2,7 @@
|
|
|
|
# Some Linux releases like to hide their <nlist.h>
|
|
|
|
$self->{CCFLAGS} = $Config{ccflags} . ' -I/usr/include/libelf'
|
|
|
|
if -f "/usr/include/libelf/nlist.h";
|
|
|
|
+# Some silly modules like mod_perl use DynaLoader.a in a shared
|
|
|
|
+# module, so add cccdlflags if we're going for a shared libperl
|
|
|
|
+$self->{CCFLAGS} = ($self->{CCFLAGS} || $Config{ccflags}) . " $Config{cccdlflags}" if $Config{'useshrplib'} eq 'true';
|
|
|
|
1;
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./ext/ODBM_File/Makefile.PL.orig 2014-01-31 21:55:51.000000000 +0000
|
|
|
|
+++ ./ext/ODBM_File/Makefile.PL 2014-06-02 14:10:31.873498422 +0000
|
2008-01-12 02:01:53 +01:00
|
|
|
@@ -1,7 +1,7 @@
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
|
|
NAME => 'ODBM_File',
|
|
|
|
- LIBS => ["-ldbm -lucb"],
|
|
|
|
+ LIBS => ["-lgdbm -lucb"],
|
|
|
|
XSPROTOARG => '-noprototypes', # XXX remove later?
|
|
|
|
VERSION_FROM => 'ODBM_File.pm',
|
2009-10-26 17:04:51 +01:00
|
|
|
);
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./ext/ODBM_File/hints/linux.pl.orig 2014-01-31 21:55:51.000000000 +0000
|
|
|
|
+++ ./ext/ODBM_File/hints/linux.pl 2014-06-02 14:10:31.873498422 +0000
|
2008-01-12 02:01:53 +01:00
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
# uses GDBM dbm compatibility feature - at least on SuSE 8.0
|
|
|
|
-$self->{LIBS} = ['-lgdbm'];
|
|
|
|
+$self->{LIBS} = ['-lgdbm -lgdbm_compat'];
|
|
|
|
|
2011-06-17 11:23:31 +02:00
|
|
|
# Debian/Ubuntu have libgdbm_compat.so but not this file,
|
2008-01-12 02:01:53 +01:00
|
|
|
# so linking may fail
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./hints/linux.sh.orig 2014-05-26 13:34:20.000000000 +0000
|
|
|
|
+++ ./hints/linux.sh 2014-06-02 14:28:21.977903155 +0000
|
|
|
|
@@ -53,7 +53,7 @@ ignore_versioned_solibs='y'
|
2008-01-12 02:01:53 +01:00
|
|
|
# BSD compatibility library no longer needed
|
|
|
|
# 'kaffe' has a /usr/lib/libnet.so which is not at all relevant for perl.
|
|
|
|
# bind causes issues with several reentrant functions
|
|
|
|
-set `echo X "$libswanted "| sed -e 's/ bsd / /' -e 's/ net / /' -e 's/ bind / /'`
|
2014-06-02 17:21:22 +02:00
|
|
|
+set `echo X "$libswanted "| sed -e 's/ bsd / /' -e 's/ net / /' -e 's/ bind / /' -e 's/ db / /' -e 's/ gdbm / /' -e 's/ ndbm / /'`
|
2008-01-12 02:01:53 +01:00
|
|
|
shift
|
|
|
|
libswanted="$*"
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -64,6 +64,20 @@ if echo " $libswanted " | grep -q ' gdbm
|
|
|
|
libswanted="$libswanted gdbm_compat"
|
|
|
|
fi
|
2009-10-26 17:04:51 +01:00
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
+if test -e /lib64/libc.so.6 ; then
|
2008-01-12 02:01:53 +01:00
|
|
|
+ libc=`ls -l /lib64/libc.so.6 | awk '{print $NF}'`
|
|
|
|
+ libc=/lib64/$libc
|
|
|
|
+ glibpth='/lib64 /usr/lib64 /usr/local/lib64'
|
|
|
|
+ libspath='/usr/local/lib64 /lib64 /usr/lib64'
|
|
|
|
+ loclibpth='/usr/local/lib64'
|
|
|
|
+ lddlflags='-shared -L/usr/local/lib64'
|
|
|
|
+ ldflags=' -L/usr/local/lib64'
|
|
|
|
+ libs='-lm -ldl -lcrypt'
|
|
|
|
+elif test -L /lib/libc.so.6; then
|
2014-06-02 17:21:22 +02:00
|
|
|
+ libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'`
|
|
|
|
+ libc=/lib/$libc
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
# Configure may fail to find lstat() since it's a static/inline
|
|
|
|
# function in <sys/stat.h>.
|
|
|
|
d_lstat=define
|
|
|
|
@@ -147,6 +161,7 @@ case "$optimize" in
|
2008-01-12 02:01:53 +01:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
+ optimize="$optimize --pipe"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -204,6 +219,10 @@ case "$libc" in
|
2011-05-16 16:18:55 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2008-01-12 02:01:53 +01:00
|
|
|
+man1dir=/usr/share/man/man1
|
|
|
|
+man3dir=/usr/share/man/man3
|
|
|
|
+man3ext=3pm
|
|
|
|
+
|
|
|
|
# Are we using ELF? Thanks to Kenneth Albanowski <kjahds@kjahds.com>
|
|
|
|
# for this test.
|
|
|
|
cat >try.c <<'EOM'
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -288,6 +307,29 @@ EOM
|
2008-01-12 02:01:53 +01:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
+case `uname -m` in
|
|
|
|
+i?86) archname='i586-linux';;
|
|
|
|
+*) archname=`uname -m`-linux;;
|
|
|
|
+esac
|
|
|
|
+
|
|
|
|
+case $archname in
|
|
|
|
+sparc64-linux) glibpth="/lib64 /usr/lib64";;
|
|
|
|
+esac
|
|
|
|
+
|
2011-05-16 16:18:55 +02:00
|
|
|
+cf_email='none'
|
2008-01-12 02:01:53 +01:00
|
|
|
+#libs='-lgdbm -ldb -ldl -lm -lc'
|
|
|
|
+#libs='-ldl -lm -lc'
|
|
|
|
+
|
|
|
|
+usedl='true'
|
|
|
|
+dlsrc='dl_dlopen.xs'
|
2010-04-01 18:16:33 +02:00
|
|
|
+d_dosuid='undef'
|
2008-01-12 02:01:53 +01:00
|
|
|
+d_bincompat3='y'
|
|
|
|
+
|
|
|
|
+# We don't want to add /usr/local/include and /usr/local/lib to the search
|
|
|
|
+# paths, they are already searched by default.
|
|
|
|
+locincpth=
|
|
|
|
+loclibpth=
|
|
|
|
+
|
|
|
|
rm -f try.c a.out
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
if ${sh:-/bin/sh} -c exit; then
|
|
|
|
@@ -337,6 +379,9 @@ else
|
2008-01-12 02:01:53 +01:00
|
|
|
echo "Couldn't find tcsh. Csh-based globbing might be broken."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
+csh=''
|
|
|
|
+d_csh='undef'
|
|
|
|
+full_csh=''
|
|
|
|
|
|
|
|
# Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu>
|
|
|
|
# Message-Id: <33EF1634.B36B6500@pobox.com>
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -447,6 +492,8 @@ $define|true|[yY]*)
|
2008-01-12 02:01:53 +01:00
|
|
|
d_localtime_r_proto="$define"
|
|
|
|
d_random_r_proto="$define"
|
|
|
|
|
|
|
|
+ test -e /lib64/libc.so.6 && libs='-lm -ldl -lcrypt -lpthread'
|
|
|
|
+
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
EOCBU
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./installperl.orig 2014-05-26 13:34:20.000000000 +0000
|
|
|
|
+++ ./installperl 2014-06-02 14:10:31.873498422 +0000
|
|
|
|
@@ -722,7 +722,7 @@ sub installlib {
|
2011-05-16 16:18:55 +02:00
|
|
|
return if $name eq 'ExtUtils/XSSymSet.pm' and !$Is_VMS;
|
|
|
|
|
|
|
|
my $installlib = $installprivlib;
|
|
|
|
- if ($dir =~ /^auto\// ||
|
|
|
|
+ if (($dir =~ /^auto\// && $dir ne 'auto/Compress/Zlib') ||
|
|
|
|
($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) ||
|
|
|
|
($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) ||
|
|
|
|
$name=~/^Config_(heavy|git)\.pl\z/
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./lib/perl5db.pl.orig 2014-05-26 13:34:20.000000000 +0000
|
|
|
|
+++ ./lib/perl5db.pl 2014-06-02 14:10:31.875498305 +0000
|
|
|
|
@@ -2327,6 +2327,8 @@ sub _DB__handle_run_command_in_pager_com
|
2013-06-06 15:35:18 +02:00
|
|
|
open( OUT, ">&STDOUT" ) # XXX: lost message
|
|
|
|
|| _db_warn("Can't restore DB::OUT");
|
|
|
|
}
|
|
|
|
+ # tell readline the new OUT handle
|
|
|
|
+ $term->Attribs()->{outstream} = *OUT if defined &Term::ReadLine::Gnu::readline;
|
|
|
|
next CMD;
|
|
|
|
} ## end unless ($piped = open(OUT,...
|
2008-01-12 02:01:53 +01:00
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
@@ -2431,6 +2433,9 @@ sub _DB__at_end_of_every_command {
|
2013-06-06 15:35:18 +02:00
|
|
|
$obj->selected("");
|
|
|
|
}
|
2008-01-12 02:01:53 +01:00
|
|
|
|
2013-06-06 15:35:18 +02:00
|
|
|
+ # tell readline the new OUT handle
|
|
|
|
+ $term->Attribs()->{outstream} = *OUT if defined &Term::ReadLine::Gnu::readline;
|
|
|
|
+
|
|
|
|
# No pipes now.
|
|
|
|
$obj->piped("");
|
|
|
|
} ## end if ($piped)
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./locale.c.orig 2014-06-02 14:10:31.875498305 +0000
|
|
|
|
+++ ./locale.c 2014-06-02 14:16:48.640529661 +0000
|
|
|
|
@@ -512,7 +512,7 @@ Perl_init_i18nl10n(pTHX_ int printwarn)
|
|
|
|
char *p;
|
|
|
|
const bool locwarn = (printwarn > 1 ||
|
|
|
|
(printwarn &&
|
|
|
|
- (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p))));
|
|
|
|
+ ((p = PerlEnv_getenv("PERL_BADLANG")) && atoi(p))));
|
|
|
|
bool done = FALSE;
|
|
|
|
const char *system_default_locale = NULL;
|
2008-01-12 02:01:53 +01:00
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./t/op/numconvert.t.orig 2014-01-31 21:55:52.000000000 +0000
|
|
|
|
+++ ./t/op/numconvert.t 2014-06-02 14:10:31.875498305 +0000
|
2011-05-16 16:18:55 +02:00
|
|
|
@@ -47,7 +47,7 @@ my $max_chain = $ENV{PERL_TEST_NUMCONVER
|
2008-01-12 02:01:53 +01:00
|
|
|
|
|
|
|
# Bulk out if unsigned type is hopelessly wrong:
|
|
|
|
my $max_uv1 = ~0;
|
|
|
|
-my $max_uv2 = sprintf "%u", $max_uv1 ** 6; # 6 is an arbitrary number here
|
|
|
|
+my $max_uv2 = sprintf "%lu", $max_uv1 ** 6; # 6 is an arbitrary number here
|
|
|
|
my $big_iv = do {use integer; $max_uv1 * 16}; # 16 is an arbitrary number here
|
|
|
|
my $max_uv_less3 = $max_uv1 - 3;
|
|
|
|
|
2014-06-02 17:21:22 +02:00
|
|
|
--- ./utils/perlbug.PL.orig 2014-05-26 13:34:20.000000000 +0000
|
|
|
|
+++ ./utils/perlbug.PL 2014-06-02 14:10:31.876498251 +0000
|
|
|
|
@@ -1038,6 +1038,7 @@ sub _message_headers {
|
2009-10-26 17:04:51 +01:00
|
|
|
$headers{'Cc'} = $cc if ($cc);
|
|
|
|
$headers{'Message-Id'} = $messageid if ($messageid);
|
|
|
|
$headers{'Reply-To'} = $from if ($from);
|
|
|
|
+ $headers{'X-Webfrontend'} = 'perlbug';
|
2011-05-16 16:18:55 +02:00
|
|
|
$headers{'From'} = $from if ($from);
|
2014-06-02 17:21:22 +02:00
|
|
|
if ($have_attachment) {
|
|
|
|
$headers{'MIME-Version'} = '1.0';
|
2014-06-02 18:27:49 +02:00
|
|
|
--- ./t/porting/customized.dat.orig 2014-06-02 15:53:50.283278716 +0000
|
|
|
|
+++ ./t/porting/customized.dat 2014-06-02 15:53:59.816228999 +0000
|
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
Digest::MD5 cpan/Digest-MD5/t/files.t bdbe05b705d9da305fedce7a9f4b6ba63250c7cf
|
|
|
|
-Encode cpan/Encode/bin/enc2xs f60036fd3574ec05c9aab7f4db00a828d5dea92d
|
|
|
|
+Encode cpan/Encode/bin/enc2xs f99feedf6a1a4fa2274022dd47ccd614f35ff944
|
|
|
|
Encode cpan/Encode/Byte/Makefile.PL 0986e25f981a3bf182a13a0060d28d4efedd87e6
|
|
|
|
Encode cpan/Encode/CN/Makefile.PL 5507a49d822d0c1d14e967f4595e29e9c873540b
|
|
|
|
Encode cpan/Encode/EBCDIC/Makefile.PL 574289638393eb6b1109eb9a6874bfe8c5d2ddea
|
2014-06-02 20:07:17 +02:00
|
|
|
--- ./cpan/IO-Socket-IP/t/15io-socket.t.orig 2014-06-02 18:04:14.281137864 +0000
|
|
|
|
+++ ./cpan/IO-Socket-IP/t/15io-socket.t 2014-06-02 18:05:00.617893645 +0000
|
|
|
|
@@ -15,6 +15,7 @@ use IO::Socket::IP -register;
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
LocalHost => "127.0.0.1",
|
|
|
|
LocalPort => 0,
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok( $sock, "IO::Socket::IP", 'IO::Socket->new( Domain => AF_INET )' );
|
|
|
|
@@ -23,6 +24,7 @@ use IO::Socket::IP -register;
|
|
|
|
Domain => AF_INET,
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
LocalHost => "::1",
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
);
|
|
|
|
|
|
|
|
ok( !defined $sock, 'Domain => AF_INET, LocalHost => "::1" fails' );
|
|
|
|
@@ -40,6 +42,7 @@ SKIP: {
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
LocalHost => "::1",
|
|
|
|
LocalPort => 0,
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok( $sock, "IO::Socket::IP", 'IO::Socket->new( Domain => AF_INET6 )' ) or
|
|
|
|
@@ -49,6 +52,7 @@ SKIP: {
|
|
|
|
Domain => $AF_INET6,
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
LocalHost => "127.0.0.1",
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
);
|
|
|
|
|
|
|
|
ok( !defined $sock, 'Domain => AF_INET6, LocalHost => "127.0.0.1" fails' );
|
|
|
|
--- ./cpan/IO-Socket-IP/t/16v6only.t.orig 2014-06-02 18:04:20.555104796 +0000
|
|
|
|
+++ ./cpan/IO-Socket-IP/t/16v6only.t 2014-06-02 18:06:14.417504741 +0000
|
|
|
|
@@ -25,6 +25,7 @@ my $ECONNREFUSED_STR = "$!";
|
|
|
|
LocalPort => 0,
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
V6Only => 1,
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
) or die "Cannot listen on PF_INET6 - $@";
|
|
|
|
|
|
|
|
is( $listensock->getsockopt( IPPROTO_IPV6, IPV6_V6ONLY ), 1, 'IPV6_V6ONLY is 1 on $listensock' );
|
|
|
|
@@ -34,6 +35,7 @@ my $ECONNREFUSED_STR = "$!";
|
|
|
|
PeerHost => "127.0.0.1",
|
|
|
|
PeerPort => $listensock->sockport,
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
);
|
|
|
|
my $err = "$@";
|
|
|
|
|
|
|
|
@@ -52,6 +54,7 @@ SKIP: {
|
|
|
|
LocalPort => 0,
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
V6Only => 0,
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
) or die "Cannot listen on PF_INET6 - $@";
|
|
|
|
|
|
|
|
is( $listensock->getsockopt( IPPROTO_IPV6, IPV6_V6ONLY ), 0, 'IPV6_V6ONLY is 0 on $listensock' );
|
|
|
|
@@ -61,6 +64,7 @@ SKIP: {
|
|
|
|
PeerHost => "127.0.0.1",
|
|
|
|
PeerPort => $listensock->sockport,
|
|
|
|
Type => SOCK_STREAM,
|
|
|
|
+ GetAddrInfoFlags => 0,
|
|
|
|
);
|
|
|
|
my $err = "$@";
|
|
|
|
|