Import Debian changes 5.30.0-ok1

perl (5.30.0-ok1) yangtze; urgency=medium

  * Build for openKylin.
This commit is contained in:
openKylinBot 2022-04-25 22:03:04 +08:00
parent 302bf2c4fd
commit 6c03d12acd
236 changed files with 40018 additions and 0 deletions

4
debian/Documentation vendored Normal file
View File

@ -0,0 +1,4 @@
The Perl POD documentation and the majority of the manual pages are in
the `perl-doc' package.
The Debian Perl Policy document is in the `debian-policy' package.

41
debian/README.cross vendored Normal file
View File

@ -0,0 +1,41 @@
Cross building Perl XS module packages
======================================
Since version 5.30.0-7, the Perl packages provide a virtual package
called perl-xs-dev that XS module packages should build-depend on. This
will pull in Config.pm for the host architecture in the directory
/usr/lib/<triplet>/perl/cross-config-<version> (also symlinked to
/usr/lib/<triplet>/perl/cross-config since 5.30.0-8) that can be put on
the Perl search path for cross compilation.
This is done automatically by debhelper dh_auto_* build systems for
ExtUtils::MakeMaker and Module::Build based builds since version 12.7.
Cross building packages that link against libperl
=================================================
Since version 5.22.1-7, libperl-dev no longer depends on perl of the
same architecture. This should make it possible to cross build packages
build depending on libperl-dev, by replacing ExtUtils::Embed calls like
perl -MExtUtils::Embed -e ccopts
perl -MExtUtils::Embed -e ldopts
with something like
perl -I /usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/perl/cross-config-$(perl -MConfig -e 'print $Config{version}') -MExtUtils::Embed [...]
or more simply, since 5.30.0-8,
perl -I /usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/perl/cross-config -MExtUtils::Embed [...]
so that Config.pm for the host (target) architecture gets loaded and
provides the right header and linker paths.
This support is currently very much experimental. Success or failure
reports are welcome at <perl@packages.debian.org>.
See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813384#10 for more
information.
-- Niko Tyni <ntyni@debian.org> Sun, 20 Oct 2019 14:47:41 +0300

187
debian/README.source vendored Normal file
View File

@ -0,0 +1,187 @@
Building the Debian Perl package
================================
Patches Applied
----------------
A copy of all patches which have been applied to the source are in the
debian/patches directory of the Debian source package.
There are two classes of patches in the directory: debian/patches/fixes/* are
generally applicable to any Perl installation (and usually back-ported
from upstream, or posted to p5p when applied).
Patches in debian/patches/debian implement changes which are specific to
the Debian packaging, such as our @INC ordering or specific to policy
such as not including standard directories in LD_RUN_PATH.
Packaging Details
-----------------
The Debian build process consists of the following components:
debian/rules
makefile which drives the build process as usual with Debian packages.
This has been converted to use debhelper starting with version 5.30.0-2.
debian/config.debian
a helper script, invoked by debian/rules to run Configure with
various options.
debian/config.over
used to fiddle some config.sh variables (copied to the source
directory by the build process where it is picked up by Configure).
debian/patches
directory containg the patches applied (see above). These are maintained
with git-debrebase, but if a standalone way to add a new patch is needed
(for instance when NMUing), the recommended way is to use quilt(1).
Using DEP-3 compatible headers for the patch will improve its description
in `perl -V' output. See below for more information about using
git-debrebase.
quilt new debian/myfix
quilt add <file>
[ hack <file> ]
echo 'patch description (Closes: #xxxxxx)' | quilt header -a
# (or even better provide a full DEP-3 compatible header)
quilt refresh
debian/released-versions
contains a list of released Debian versions, used by the
debian/mkprovides script to generate a list of perlapi-<ver>
provides for perl-base indicating the released versions the package
is compatible with.
debian/headers
list of C headers to process with h2ph, which is run with "-a" to
pick up any required includes--keep this base list as short as
possible.
Managing debian/patches with git-debrebase
------------------------------------------
This section is targeted at the Debian package maintainers, working with
the Git repository pointed by the Vcs-Git field in debian/control. NMUers
and the like can use the old way of standalone patch handling described
above, or just hack the source and ignore debian/patches altogether.
First, you need to be running buster or later, and have the 'git-debrebase'
package installed.
Then, follow the guide at dgit-maint-debrebase(7) ("EDITING THE DELTA QUEUE")
<https://manpages.debian.org/stretch-backports/dgit/dgit-maint-debrebase.7.en.html#EDITING_THE_DELTA_QUEUE>
tldr; git-debrebase -i to edit the patch queue
In addition, ensure you add the necessary metadata in the commit message:
Gbp-Pq: Topic {fixes,debian}
Gbp-Pq: Name my_fix_name.diff
IMPORTANT: any time you have been working with debrebase (for example
to import a new upstream release, or edit any file outside debian/)
ensure that you run the following commands before pushing:
git debrebase conclude
git-debrebase make-patches # or dgit build-source
If you omit the former command, you will be unable to fast-forward-push.
If you omit the latter, then the repository will not accurately represent
the state of the package which will be a a problem for consistency and
historical accuracy.
Note that at the moment the perl maintainers are considering the use of dgit for
building and uploading as optional (and yet to be documented). Continue to
build and upload using your preferred methods in the meantime.
Importing new upstream releases
-------------------------------
Assuming you are importing a new major upstream release and
have the files perl_5.31.0.orig.tar.xz and
perl_5.31.0.orig-regen-configure.tar.gz in the parent directory
(see below for information about the regen-configure component
tarball).
# necessary due to https://bugs.debian.org/898026
ln -s perl_5.31.0.orig-regen-configure.tar.gz perl_5.31.0.orig-regen-configure.tar.xz
cd perl
git branch upstream-debian-5.31 upstream-debian-5.30
git branch debian-5.31 debian-5.30
gbp import-orig --upstream-version 5.31.0 --upstream-branch upstream-debian-5.31 --debian-branch debian-5.31 --component regen-configure --no-merge ../perl_5.31.0.orig.tar.xz
git debrebase new-upstream 5.31.0
# possibly resolve conflicts
git diff debian/5.30.0-1..HEAD . ':!debian' # review changes
# hack on code, add other patches, etc
# before pushing
git debrebase conclude
git debrebase make-patches
Package maintainer tests
------------------------
There are package maintainer tests in the debian/t/ directory that
are supposed to pass at all times. It is recommended that you add
a git pre-commit hook (.git/hooks/pre-commit) that runs the tests
before releasing, for instance:
#!/bin/sh
if [ -e debian/changelog ] && \
git diff --cached debian/changelog | grep -q '^-.*UNRELEASED' && \
git diff --cached debian/changelog | grep -q '^\+.*unstable'
then
prove debian/t/*.t
fi
A special note on patching Configure
------------------------------------
The Configure and config_h.SH files are autogenerated upstream. The
tooling is based on the 'dist' suite, which (among other things) contains
a collection of probe units and a program called 'metaconfig' that makes
the Configure script. Since 5.26.1-1, the perl source package contains
a fork of these 'dist' probe units along with a set of specialised ones
specific to the Perl Configure. These are in a separate original tarball
component ('perl-regen-configure').
The recommended way to change Configure is to edit these units in
regen-configure/U and run 'debian/rules update-configure' to regenerate
Configure.
(There is also some upstream machinery (mkgloss*, mksample) for
automatically updating Porting/config.sh and Porting/Glossary that is
not integrated to the Debian packaging. These only affect the source
code documentation, not functionality.)
Please see <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=762638>
for a discussion about this issue.
Regenerating the 'perl-regen-configure' original component tarball
------------------------------------------------------------------
This is a snapshot of the upstream git repository at
<https://github.com/perl5-metaconfig/metaconfig>, generated based on
information in debian/watch and debian/copyright (Files-Excluded).
It can be regenerated by running uscan(1), which uses mk-origtargz(1)
behind the scenes.
The initial packaging for 5.26.1 was based on upstream
commit d99ddb45cefcc4ae5fde1787cfbe18e1073f9f54, tagged
as debian/perl-5.26.1 in the above repository.
Credits
-------
Previous maintainers of Debian Perl packages:
Ray Dassen <jdassen@WI.LeidenUniv.NL>,
Carl Streeter <streeter@cae.wisc.edu>,
Robert Sanders <Robert.Sanders@linux.org> and
Darren Stalder <torin@daft.com>.
-- Brendan O'Dea <bod@debian.org> Tue, 8 Mar 2005 19:30:38 +1100
-- Niko Tyni <ntyni@debian.org> Wed, 03 Feb 2010 14:47:51 +0200

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
perl (5.30.0-ok1) yangtze; urgency=medium
* Build for openKylin.
-- openKylinBot <openKylinBot@openkylin.com> Mon, 25 Apr 2022 22:03:04 +0800

89
debian/check-require vendored Executable file
View File

@ -0,0 +1,89 @@
#!perl
# check that the Perl modules listed in STDIN can be used with only
# modules under the current directory (or the one given as the
# only argument)
# Copyright 2010 Niko Tyni <ntyni@debian.org>
#
# This program is free software;
# you may redistribute it and/or modify it under the same terms as Perl
# itself.
# only look under the specified directory, default to cwd
BEGIN {
my $dir = shift || '.';
chdir $dir or die("chdir $dir: $!");
@INC=map { qq{.$_} } grep m|^/|, @INC;
}
# unbuffer output
$| = 1;
# supported input format variations:
# ./usr/share/perl/5.12/Tie/Hash.pm
# usr/share/perl/5.12/Tie/Hash.pm
# usr/*/perl/*/Tie/Hash.pm
# Tie::Hash
# usr/*/perl/*/File/Glob
# usr/share/perl/5.12/Config_heavy.pl
# Config_heavy.pl
# Config
# unicore/heavy.pl
# sys/ioctl.ph
sub canonicalize {
local $_ = shift;
s|^\./||;
/\*/ and do {
my @files = glob;
die("no files globbed by $_") if !@files;
return map { canonicalize($_) } @files;
};
-d and do {
return canonicalize("$_/*");
};
# usr/*/perl/*/auto/File/Glob/Glob.so and the like should be ignored
return () if m|/| && !/\.p[hlm]$/;
s|usr/share/perl/[^/]+/||;
s|usr/lib/[^/]+/perl/[^/]+/||;
s|usr/lib/[^/]+/perl-base/||;
s|/|::|g if s/\.pm$//;
return ($_);
}
while (<>) {
chomp;
next if !/\S/ || /^\s*#/;
check($_) for canonicalize($_);
}
my %seen;
sub check {
local $_ = shift;
return if $seen{$_}++;
# "use IO" and "use re" are deprecated and/or useless
return if $_ eq 'IO' || $_ eq 're';
# "use feature" dies without an argument
return if $_ eq 'feature';
# this file does not return a true value, and is not to be used
# directly
return if $_ eq 'unicore/To/Isc.pl';
if (m|([^/]+)_heavy\.pl|) {
# bytes_heavy.pl needs bytes.pm loaded first
check($1);
};
print "$_: ";
if (/\.p[hl]$/) { # require "unicore/To/Upper.pl";
require $_;
} else { # require Fcntl; Fcntl->import;
eval qq{require $_; $_->import;};
die $@ if $@;
}
print "ok\n";
}

15
debian/clean vendored Normal file
View File

@ -0,0 +1,15 @@
# Makefile stamp files
*-stamp
# the build directories
build-debug/
build-shared/
build-static/
# generated from debian/patches/series
patchlevel-debian.h
# Configure regeneration leftovers
Configure.orig
config_h.SH.orig
U
Wanted
.package
Obsolete

246
debian/config.debian vendored Normal file
View File

@ -0,0 +1,246 @@
#!/bin/bash
eval $(echo '#include "./patchlevel.h"
SETver=PERL_REVISION.PERL_VERSION;
SETsubver= PERL_SUBVERSION' | gcc -E -DPERL_PATCHLEVEL_H_IMPLICIT - \
| sed -n '/^SET/{s///;s/ //gp;}')
fullver="$ver.$subver"
nextver="$ver."$(($subver+1))
ccflags=-DDEBIAN
ldflags=
host_arch=${DEB_HOST_ARCH:-$(dpkg-architecture -qDEB_HOST_ARCH)}
host_arch_cpu=${DEB_HOST_ARCH_CPU:-$(dpkg-architecture -qDEB_HOST_ARCH_CPU)}
host_gnu_type=${DEB_HOST_GNU_TYPE:-$(dpkg-architecture -qDEB_HOST_GNU_TYPE)}
build_gnu_type=${DEB_BUILD_GNU_TYPE:-$(dpkg-architecture -qDEB_BUILD_GNU_TYPE)}
optimize=-O2
debugging=-g
archtriplet=${DEB_HOST_MULTIARCH:-$(dpkg-architecture -qDEB_HOST_MULTIARCH)}
# this goes in config.h to make perl -V output reproducible
PERL_BUILD_DATE=$(LC_ALL=C date '+%b %e %Y %T' --utc -d "$(dpkg-parsechangelog | sed -n -e 's/^Date: //p')")
case "$1" in
--static) # static perl
build_type=static
opts="-Uuseshrplib -Dotherlibdirs=\"/usr/lib/$archtriplet/perl-base\"";;
--debug) # debugperl
build_type=debug
debugging=both # add -DDEBUGGING
opts="-Uuseshrplib";;
--shared) # shared library
build_type=shared
opts="-Duseshrplib -Dlibperl=libperl.so.$fullver";;
--version)
exec echo $ver;;
--full-version)
exec echo $fullver;;
--next-version)
exec echo $nextver;;
*) echo "$0: need --shared, --static, or --debug option"
exit 2;;
esac
case "$host_arch_cpu:$build_type" in
sh4:*) # required to correctly handle floating point on sh4
ccflags="$ccflags -mieee";;
m68k:shared) # work around an optimiser bug
ccflags="$ccflags -fno-regmove";;
esac
case ",$DEB_BUILD_OPTIONS," in
*[,\ ]noopt[,\ ]*)
optimize="$optimize${optimize:+ }-O0";;
esac
cc=${CC:-${host_gnu_type}-gcc}
cpp=${CPP:-${host_gnu_type}-cpp}
ld=${LD:-${host_gnu_type}-gcc}
if which dpkg-buildflags >/dev/null 2>&1; then
ccflags="$ccflags $(dpkg-buildflags --get CPPFLAGS)"
ccflags="$ccflags $(dpkg-buildflags --get CFLAGS)"
ldflags="$ldflags $(dpkg-buildflags --get LDFLAGS)"
fi
mkdir build-$build_type
cd build-$build_type
# post-configure tweaks
cp ../debian/config.over .
if [ "$build_gnu_type" = "$host_gnu_type" ]
then
# native builds
# need bash when sourcing config.over
eval /bin/bash ../Configure \
-Dmksymlinks \
-Dusethreads \
-Duselargefiles \
-Dcc=$cc \
-Dcpp=$cpp \
-Dld=$ld \
-Dccflags=\'$ccflags\' \
-Dldflags=\'$ldflags\' \
-Dlddlflags=\'-shared $ldflags\' \
-Dcccdlflags=-fPIC \
-Darchname=$host_gnu_type \
-Dprefix=/usr \
-Dprivlib=/usr/share/perl/$ver \
-Darchlib=/usr/lib/$archtriplet/perl/$ver \
-Dvendorprefix=/usr \
-Dvendorlib=/usr/share/perl5 \
-Dvendorarch=/usr/lib/$archtriplet/perl5/$ver \
-Dsiteprefix=/usr/local \
-Dsitelib=/usr/local/share/perl/$fullver \
-Dsitearch=/usr/local/lib/$archtriplet/perl/$fullver \
-Dman1dir=/usr/share/man/man1 \
-Dman3dir=/usr/share/man/man3 \
-Dsiteman1dir=/usr/local/man/man1 \
-Dsiteman3dir=/usr/local/man/man3 \
-Duse64bitint \
-Dman1ext=1 \
-Dman3ext=3perl \
-Dpager=/usr/bin/sensible-pager \
-Uafs \
-Ud_csh \
-Ud_ualarm \
-Uusesfio \
-Uusenm \
-Ui_libutil \
-Ui_xlocale \
-Uversiononly \
-DDEBUGGING=$debugging \
-Doptimize=\"$optimize\" \
$extra_path \
-dEs $opts
# note about the debian/cross files for the build log
crossconfig=../debian/cross/${host_arch}/config.sh.static
if [ "$build_type" = "static" ]; then
if [ -f $crossconfig ]; then
if ! diff --ignore-matching-lines="cf_time" \
--ignore-matching-lines="Configuration time" \
--ignore-matching-lines="Extracted from Debian package" \
$crossconfig config.sh >/dev/null
then
echo "Note: source package config.sh for cross building differs from generated one"
echo "Note: consider refreshing with debian/cross/extract-config-sh after the build"
diff -u0 $crossconfig config.sh | head -100
echo --------------------------------------------------
else
echo "Note: source package config.sh for cross building is up to date with the generated one (good!)"
fi
else
echo "Note: no source package config.sh for cross building"
echo "Note: consider including it with debian/cross/extract-config-sh after the build"
fi
fi
# for the Configure -S call below
crossargs=
else
# cross builds
# find a ready made config.sh, currently in debian/cross/<arch>
basedir=../debian/cross/${host_arch}
baseconfig=${basedir}/config.sh.static
if [ ! -f $baseconfig ]; then
echo "need $baseconfig for cross build!" 1>&2
exit 1
fi
# check for a new upstream version, invalidating old config.sh files
crossversion=$(sed -n "s/^version='\(.*\)'/\1/ p" $baseconfig)
if [ "$fullver" != "$crossversion" ]; then
echo "Fatal: need $baseconfig for cross build but it needs refreshing from $crossversion to $fullver!" 1>&2
echo "To fix: make a native build and run debian/cross/extract-config-sh on the results" 1>&2
echo " (or fix $baseconfig by hand)" 1>&2
exit 1
fi
# arch-specific REFRESH files can be used to invalidate the old config.sh
# files regardless of the version
# there can be a comment inside the REFRESH file
# example use case: changed Configure parameters
if [ -e $basedir/REFRESH ]; then
echo "Fatal: need $baseconfig for cross build but it needs refreshing!" 1>&2
cat $basedir/REFRESH 1>&2
echo "To fix: make a native build and run debian/cross/extract-config-sh on the results" 1>&2
echo " (or fix $baseconfig by hand)" 1>&2
echo "Then remove $basedir/REFRESH" 1>&2
exit 1
fi
# Next, ask Configure to compile a build system miniperl and
# generate_uudmap executable in host/
#
# It's tempting to use the system perl for this, but that fails
# when building extensions because it tries to dynamically load
# XS modules from lib/, particularly as <*> uses File::Glob on
# full perls (but not miniperl)
if [ ! -x ../build-miniperl ]; then
echo "Cross build: making a native miniperl for the build process"
cd ..
./Configure -dE -Dusecrosscompile
# host/ gets cleaned between builds by 'make distclean', so
# stash the results
cp host/miniperl build-miniperl
cp host/generate_uudmap build-generate_uudmap
cd build-$build_type
fi
# create symlinks for build directory
# we can't seem to make Configure create these symlinks without probing
# so make a separate mksymlinks helper for now
sed '/^\?/d' ../regen-configure/U/perl/Mksymlinks.U > ../mksymlinks
src=$(pwd)/..
mkdir UU
cd UU
src="$src" lns="ln -s" issymlink="test -h" bash ../../mksymlinks 4>&2
cd ..
# override configuration for cross building
# Actually use the old config.sh files,
# removing the absolute build path in 'src'
sed 's/^src=.*/src=./' $baseconfig > ./config.sh
if [ "$build_type" = "static" ]; then
# notes for the build log
echo "Cross build: recycling old probed configuration from $baseconfig"
grep '^cf_time' $baseconfig
md5sum $baseconfig
# debian/cross/extract-config-sh appends a comment so show that
grep "Extracted from Debian package version" $baseconfig
else
patchconfig=${basedir}/config.sh.$build_type.patch
if [ ! -f "$patchconfig" ]; then
echo "need $patchconfig for cross build!" 1>&2
exit 1
fi
patch config.sh < $patchconfig
echo "Cross build: recycling old probed configuration from $patchconfig"
md5sum $patchconfig
fi
crossargs="-Dusecrosscompile \
-Dhostgenerate=../build-generate_uudmap \
-Dhostperl=../build-miniperl \
-Dperl=/usr/bin/perl"
fi
# now continue with extracting Makefile et al.
/bin/bash ./Configure -S $crossargs
# append PERL_BUILD_DATE before the last #endif in config.h
# massive quoting problems prevent passing this to Configure
sed -i "\$i #define PERL_BUILD_DATE \"$PERL_BUILD_DATE\"" config.h

148
debian/config.over vendored Normal file
View File

@ -0,0 +1,148 @@
#!/bin/sh
# we use a different method to get old site versions into @INC
sitelib_stem=
# no versions under vendorlib
vendorlib_stem=
# remove -rpath (shared libperl is moved to /usr/lib/<triplet> by rules)
tmp=
for t in $ccdlflags
do
case $t in
-Wl,-rpath,*) ;;
*) tmp="$tmp${tmp:+ }$t"
esac
done
ccdlflags="$tmp"
# set previous version dirs
inc_version_list=
inc_version_list_init=0
while read ver
do
dpkg --compare-versions "$ver" lt "$version" || break
dpkg --compare-versions "$ver" lt "$api_versionstring" && continue
inc_version_list="$ver $ver/$archname${inc_version_list:+ }$inc_version_list"
inc_version_list_init="\"$ver\",\"$ver/$archname\",$inc_version_list_init"
done <../debian/released-versions
if [ -n "$inc_version_list" ]; then
d_inc_version_list=define
fi
# we always want the Berkeley DB support
if [ "$i_db" != "$define" ]; then
echo "debian/config.over: Berkeley DB support not enabled, aborting!" 1>&2
exit 1
fi
# force /usr/lib/<triplet> into $Config{libpth} if it's not there yet
# see #630399
multiarch_dir=/usr/lib/`dpkg-architecture -qDEB_HOST_MULTIARCH`
if ! echo $libpth | grep -q "$multiarch_dir"
then
libpth="$libpth $multiarch_dir"
fi
# set configuration time to latest debian/changelog entry
cf_time=$(LC_ALL=C date --utc -d "$(cd .. && dpkg-parsechangelog | sed -n -e 's/^Date: //p')")
# set generic email addresses, host/domain names
cf_by="$(dpkg-vendor --query vendor)"
cf_email=perl@packages.debian.org
perladmin=root@localhost
mydomain=
myhostname=localhost
host_arch=${DEB_HOST_ARCH:-$(dpkg-architecture -qDEB_HOST_ARCH)}
# emulate 'uname -m' output for reproducibility regardless of (for example)
# 32-bit vs 64-bit kernel
#
# this is silly but oh well
# see #821182
case "$host_arch" in
# hardcoded machine names on known architectures based on debian/cross results
alpha)
machine_uname=alpha
;;
amd64|kfreebsd-amd64|x32)
machine_uname=x86_64
;;
arm64)
machine_uname=aarch64
;;
armel|armhf)
machine_uname=armv7l
;;
hppa)
machine_uname=parisc64
;;
hurd-i386)
machine_uname=i686-at386
;;
i386)
machine_uname=i686
;;
kfreebsd-i386)
machine_uname=i386
;;
mips64el)
machine_uname=mips64
;;
mips|mipsel)
machine_uname=mips
;;
kfreebsd-i386)
machine_uname=i686
;;
m68k)
machine_uname=m68k
;;
powerpc|powerpcspe)
machine_uname=ppc
;;
ppc64)
machine_uname=ppc64
;;
ppc64el)
machine_uname=ppc64le
;;
s390x)
machine_uname=s390x
;;
sh4)
machine_uname=sh4a
;;
sparc64)
machine_uname=sparc64
;;
*)
# default to what Configure does
machine_uname=$(uname -m | tr '[A-Z]' '[a-z]' | sed -e "s,['/],,g")
;;
esac
case "$osname" in
linux)
osvers=4.19.0
osdesc="#1 smp debian $osvers"
os=gnulinux
;;
gnu)
osvers=0.9
osdesc="gnu-mach"
os=gnu
;;
gnukfreebsd)
osvers=10.3
osdesc="#0"
os=gnukfreebsd
;;
esac
if [ -n "$osdesc" ]; then
myarchname="${machine_uname}-${osname}"
myuname="$osname $myhostname $osvers $osdesc $machine_uname $os "
fi

372
debian/control vendored Normal file
View File

@ -0,0 +1,372 @@
Source: perl
Section: perl
Priority: standard
Maintainer: Niko Tyni <ntyni@debian.org>
Uploaders: Dominic Hargreaves <dom@earth.li>
Standards-Version: 3.9.8
Homepage: http://dev.perl.org/perl5/
Rules-Requires-Root: no
Build-Depends: file,
cpio,
libdb-dev,
libgdbm-dev (>= 1.18-0),
libgdbm-compat-dev,
netbase <!nocheck>,
procps [!hurd-any] <!nocheck>,
debhelper-compat (= 12),
zlib1g-dev | libz-dev,
libbz2-dev,
dpkg-dev (>= 1.17.14),
dist (>= 3.5-0),
libc6-dev (>= 2.19-0) [s390x]
Vcs-Git: https://salsa.debian.org/perl-team/interpreter/perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/interpreter/perl
Package: perl-base
Essential: yes
Priority: required
Architecture: any
Pre-Depends: ${shlibs:Depends}, dpkg (>= 1.17.17)
Depends: ${misc:Depends}
Conflicts: safe-rm (<< 0.8),
update-inetd (<< 4.41),
defoma (<< 0.11.12),
doc-base (<< 0.10.3),
mono-gac (<< 2.10.8.1-0),
Breaks: perl (<< ${Upstream-Version}~),
perl-modules (<< ${Upstream-Version}~),
libfile-spec-perl (<< 3.7800),
libxsloader-perl (<< 0.30),
libsocket-perl (<< 2.027),
libio-socket-ip-perl (<< 0.39),
libfile-temp-perl (<< 0.2309),
libfile-path-perl (<< 2.16),
libscalar-list-utils-perl (<< 1:1.50),
libsbuild-perl (<< 0.67.0-0),
backuppc (<< 3.3.1-0),
mailagent (<< 1:3.1-81-0),
texinfo (<< 6.1.0.dfsg.1-0),
dh-haskell (<< 0.3),
amanda-common (<< 1:3.3.9-0),
libexception-class-perl (<< 1.42),
debconf (<< 1.5.61),
intltool (<< 0.51.0-0),
slic3r (<< 1.2.9+dfsg-0),
slic3r-prusa (<< 1.37.0+dfsg-0),
Replaces: perl (<< 5.10.1-0), perl-modules (<< 5.20.1-0),
libscalar-list-utils-perl (<< 1:1.50),
libxsloader-perl (<< 0.30),
libsocket-perl (<< 2.027),
libfile-temp-perl (<< 0.2309),
libfile-path-perl (<< 2.16),
libio-socket-ip-perl (<< 0.39),
Provides: ${perlapi:Provides},
libscalar-list-utils-perl (= 1:1.50),
libxsloader-perl (= 0.30),
libsocket-perl (= 2.027),
libfile-temp-perl (= 0.2309),
libfile-path-perl (= 2.16),
libio-socket-ip-perl (= 0.39),
Suggests: perl, sensible-utils
Description: minimal Perl system
Perl is a scripting language used in many system scripts and utilities.
.
This package provides a Perl interpreter and the small subset of the
standard run-time library required to perform basic tasks. For a full
Perl installation, install "perl" (and its dependencies, "perl-modules-5.30"
and "perl-doc").
Package: perl-doc
Section: doc
Priority: optional
Architecture: all
Depends: perl (>= ${Upstream-Version}-1), ${misc:Depends}
Suggests: man-browser, groff-base
Multi-Arch: foreign
Description: Perl documentation
Perl manual pages, POD documentation and the `perldoc' program. If you are
writing Perl programs, you almost certainly need this.
Package: perl-debug
Section: devel
Priority: optional
Architecture: any
Depends: perl (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Description: debug-enabled Perl interpreter
debugperl provides a debug-enabled version of Perl which can produce
extensive information about the interpreter as it compiles and executes
a program (see the -D switch in perlrun(1)).
.
Note that this package is primarily of use in debugging *Perl* rather
than perl programs, which may be traced/debugged using the standard
perl binary using the -d switch (see perldebug(1)).
.
In addition, this package also includes debugging information for the normal
Perl interpreter.
Package: libperl5.30
Section: libs
Priority: optional
Architecture: any
Depends: ${shlibs:Depends}, perl-modules-5.30 (>= ${source:Version}), ${misc:Depends}
Breaks: libdigest-md5-perl (<< 2.55),
libmime-base64-perl (<< 3.15),
libtime-hires-perl (<< 1.9760),
libstorable-perl (<< 3.15),
libdigest-sha-perl (<< 6.02),
libsys-syslog-perl (<< 0.35),
libcompress-zlib-perl (<< 2.084),
libcompress-raw-zlib-perl (<< 2.084),
libcompress-raw-bzip2-perl (<< 2.084),
libio-compress-zlib-perl (<< 2.084),
libio-compress-bzip2-perl (<< 2.084),
libio-compress-base-perl (<< 2.084),
libio-compress-perl (<< 2.084),
libthreads-perl (<< 2.22),
libthreads-shared-perl (<< 1.60),
libtime-piece-perl (<< 1.3300),
libencode-perl (<< 3.01),
libfilter-perl (<< 1.59),
Replaces: perl-base (<< 5.22.0~), perl (<< 5.22.0~),
libarchive-tar-perl (<= 1.38-0),
libdigest-md5-perl (<< 2.55),
libmime-base64-perl (<< 3.15),
libtime-hires-perl (<< 1.9760),
libstorable-perl (<< 3.15),
libdigest-sha-perl (<< 6.02),
libtime-piece-perl (<< 1.3300),
libsys-syslog-perl (<< 0.35),
libcompress-zlib-perl (<< 2.084),
libcompress-raw-zlib-perl (<< 2.084),
libcompress-raw-bzip2-perl (<< 2.084),
libio-compress-zlib-perl (<< 2.084),
libio-compress-bzip2-perl (<< 2.084),
libio-compress-base-perl (<< 2.084),
libio-compress-perl (<< 2.084),
libthreads-perl (<< 2.22),
libthreads-shared-perl (<< 1.60),
libmodule-corelist-perl (<< 2.14-0),
libencode-perl (<< 3.01),
Suggests: sensible-utils
Multi-Arch: same
Description: shared Perl library
This package contains the shared Perl library, used by applications
which embed a Perl interpreter.
.
It also contains the architecture-dependent parts of the standard
library (and depends on perl-modules-5.30 which contains the
architecture-independent parts).
Package: libperl-dev
Section: libdevel
Priority: optional
Architecture: any
Provides: perl-xs-dev
Multi-Arch: same
Depends: perl:any (= ${binary:Version}), libperl5.30 (= ${binary:Version}),
${misc:Depends}, libc6-dev | libc-dev
Description: Perl library: development files
Files for developing applications which embed a Perl interpreter.
Package: perl-modules-5.30
Section: libs
Priority: standard
Architecture: all
Multi-Arch: foreign
Depends: perl-base (>= ${Upstream-Version}-1), ${misc:Depends}
Pre-Depends: dpkg (>= 1.17.17)
Recommends: perl (>= ${Upstream-Version}-1),
Conflicts: perl-modules (<< 5.22.0~),
Breaks: perl (<< ${Upstream-Version}~),
libpod-parser-perl (<< 1.63),
libansicolor-perl (<< 4.06),
libnet-perl (<< 1:3.11),
libattribute-handlers-perl (<< 1.01),
libi18n-langtags-perl (<< 0.43),
liblocale-maketext-perl (<< 1.29),
libmath-bigint-perl (<< 1.999816),
libnet-ping-perl (<< 2.71),
libtest-harness-perl (<< 3.42),
libtest-simple-perl (<< 1.302162),
liblocale-codes-perl (<< 3.56),
libmodule-corelist-perl (<< 5.20190522),
libio-zlib-perl (<< 1.10),
libarchive-tar-perl (<< 2.32),
libextutils-cbuilder-perl (<< 0.280231),
libmodule-load-perl (<< 0.34),
liblocale-maketext-simple-perl (<< 0.21.01),
libparams-check-perl (<< 0.38),
libmodule-load-conditional-perl (<< 0.68),
libversion-perl (<< 1:0.9924),
libpod-simple-perl (<< 3.35),
libextutils-parsexs-perl (<< 3.400000),
libpod-escapes-perl (<< 1.07),
libparse-cpan-meta-perl (<< 2.150010),
libparent-perl (<< 0.237),
libautodie-perl (<< 2.29-0),
libthread-queue-perl (<< 3.13),
libfile-spec-perl (<< 3.7800),
libtime-local-perl (<< 1.2800),
podlators-perl (<< 4.11),
libunicode-collate-perl (<< 1.27),
libcpan-meta-perl (<< 2.150010),
libmath-complex-perl (<< 1.5901),
libextutils-command-perl (<< 7.34),
libmodule-metadata-perl (<< 1.000036),
libjson-pp-perl (<< 4.02000),
libperl-ostype-perl (<< 1.010),
libcpan-meta-yaml-perl (<< 0.018),
libdigest-perl (<< 1.17.01),
libextutils-install-perl (<< 2.14),
libhttp-tiny-perl (<< 0.076),
libcpan-meta-requirements-perl (<< 2.140),
libexperimental-perl (<< 0.020),
libtest-use-ok-perl (<< 1.302162),
libtest-tester-perl (<< 1.302162),
maildirsync (<< 1.2-0),
Replaces: perl-modules,
perl-base (<< 5.22.0~),
libpod-parser-perl (<< 1.63),
libansicolor-perl (<< 4.06),
libnet-perl (<< 1:3.11),
libattribute-handlers-perl (<< 1.01),
libi18n-langtags-perl (<< 0.43),
liblocale-maketext-perl (<< 1.29),
libmath-bigint-perl (<< 1.999816),
libnet-ping-perl (<< 2.71),
libtest-harness-perl (<< 3.42),
libtest-simple-perl (<< 1.302162),
libmodule-corelist-perl (<< 5.20190522),
libio-zlib-perl (<< 1.10),
libarchive-tar-perl (<< 2.32),
libextutils-cbuilder-perl (<< 0.280231),
libmodule-load-perl (<< 0.34),
liblocale-maketext-simple-perl (<< 0.21.01),
libparams-check-perl (<< 0.38),
libmodule-load-conditional-perl (<< 0.68),
libversion-perl (<< 1:0.9924),
libpod-simple-perl (<< 3.35),
libextutils-parsexs-perl (<< 3.400000),
libpod-escapes-perl (<< 1.07),
libparse-cpan-meta-perl (<< 2.150010),
libparent-perl (<< 0.237),
libautodie-perl (<< 2.29-0),
libthread-queue-perl (<< 3.13),
libfile-spec-perl (<< 3.7800),
libtime-local-perl (<< 1.2800),
podlators-perl (<< 4.11),
libunicode-collate-perl (<< 1.27),
libcpan-meta-perl (<< 2.150010),
libmath-complex-perl (<< 1.5901),
libextutils-command-perl (<< 7.34),
libmodule-metadata-perl (<< 1.000036),
libjson-pp-perl (<< 4.02000),
libperl-ostype-perl (<< 1.010),
libcpan-meta-yaml-perl (<< 0.018),
libdigest-perl (<< 1.17.01),
libextutils-install-perl (<< 2.14),
libhttp-tiny-perl (<< 0.076),
libcpan-meta-requirements-perl (<< 2.140),
libexperimental-perl (<< 0.020),
libtest-use-ok-perl (<< 1.302162),
libtest-tester-perl (<< 1.302162),
Provides: perl-modules
Description: Core Perl modules
Architecture independent Perl modules. These modules are part of Perl and
required if the `perl' package is installed.
.
Note that this package only exists to save archive space and should be
considered an internal implementation detail of the `perl' package.
Other packages should not depend on `perl-modules-5.30' directly, they
should use `perl' (which depends on `perl-modules-5.30') instead.
Package: perl
Priority: standard
Architecture: any
Multi-Arch: allowed
Pre-Depends: dpkg (>= 1.17.17)
Depends: perl-base (= ${binary:Version}), perl-modules-5.30 (>= ${source:Version}), libperl5.30 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Conflicts: libjson-pp-perl (<< 2.27200-0)
Breaks: perl-doc (<< ${Upstream-Version}-1),
libperl-dev (<< 5.24.0~),
apt-show-versions (<< 0.22.10),
libmarc-charset-perl (<< 1.35-0),
libdist-inkt-perl (<< 0.024-0)
Replaces: perl-modules (<< 5.22.0~), perl-base (<< 5.30.0-0)
Provides: libdigest-md5-perl (= 2.55),
libmime-base64-perl (= 3.15),
libtime-hires-perl (= 1.9760),
libstorable-perl (= 3.15),
libdigest-sha-perl (= 6.02),
libsys-syslog-perl (= 0.35),
libcompress-zlib-perl (= 2.084),
libcompress-raw-zlib-perl (= 2.084),
libcompress-raw-bzip2-perl (= 2.084),
libio-compress-zlib-perl (= 2.084),
libio-compress-bzip2-perl (= 2.084),
libio-compress-base-perl (= 2.084),
libio-compress-perl (= 2.084),
libthreads-perl (= 2.22),
libthreads-shared-perl (= 1.60),
libtime-piece-perl (= 1.3300),
libencode-perl (= 3.01),
libpod-parser-perl (= 1.63),
libansicolor-perl (= 4.06),
libnet-perl (= 1:3.11),
libattribute-handlers-perl (= 1.01),
libi18n-langtags-perl (= 0.43),
liblocale-maketext-perl (= 1.29),
libmath-bigint-perl (= 1.999816),
libnet-ping-perl (= 2.71),
libtest-harness-perl (= 3.42),
libtest-simple-perl (= 1.302162),
libmodule-corelist-perl (= 5.20190522),
libio-zlib-perl (= 1.10),
libarchive-tar-perl (= 2.32),
libextutils-cbuilder-perl (= 0.280231),
libmodule-load-perl (= 0.34),
liblocale-maketext-simple-perl (= 0.21.01),
libparams-check-perl (= 0.38),
libmodule-load-conditional-perl (= 0.68),
libversion-perl (= 1:0.9924),
libpod-simple-perl (= 3.35),
libextutils-parsexs-perl (= 3.400000),
libpod-escapes-perl (= 1.07),
libparse-cpan-meta-perl (= 2.150010),
libparent-perl (= 0.237),
libautodie-perl (= 2.29-2),
libthread-queue-perl (= 3.13),
libfile-spec-perl (= 3.7800),
libtime-local-perl (= 1.2800),
podlators-perl (= 4.11),
libunicode-collate-perl (= 1.27),
libcpan-meta-perl (= 2.150010),
libmath-complex-perl (= 1.5901),
libextutils-command-perl (= 7.34),
libmodule-metadata-perl (= 1.000036),
libjson-pp-perl (= 4.02000),
libperl-ostype-perl (= 1.010),
libversion-requirements-perl,
libcpan-meta-yaml-perl (= 0.018),
libdigest-perl (= 1.17.01),
libextutils-install-perl (= 2.14),
libhttp-tiny-perl (= 0.076),
libcpan-meta-requirements-perl (= 2.140),
libexperimental-perl (= 0.020),
libtest-use-ok-perl (= 1.302162),
libtest-tester-perl (= 1.302162),
Recommends: netbase
Suggests: perl-doc, libterm-readline-gnu-perl | libterm-readline-perl-perl,
make, libb-debug-perl, liblocale-codes-perl
Description: Larry Wall's Practical Extraction and Report Language
Perl is a highly capable, feature-rich programming language with over
20 years of development. Perl 5 runs on over 100 platforms from
portables to mainframes. Perl is suitable for both rapid prototyping
and large scale development projects.
.
Perl 5 supports many programming styles, including procedural,
functional, and object-oriented. In addition to this, it is supported
by an ever-growing collection of reusable modules which accelerate
development. Some of these modules include Web frameworks, database
integration, networking protocols, and encryption. Perl provides
interfaces to C and C++ for custom extension development.

2909
debian/copyright vendored Normal file

File diff suppressed because it is too large Load Diff

17
debian/cross/README vendored Normal file
View File

@ -0,0 +1,17 @@
These config.sh.* files are generated during the package build
and installed into the libperl5.xx package, in the directory
/usr/lib/<triplet>/perl/config-data-<version>. They contain probed values
about system configuration, used for cross building the package.
The probes currently need to run on the native architecture, so they
cannot be used for cross building. As a workaround, we store the results
in the built binary package and then manually copy them back to the
source package as needed.
The process is currently experimental, and no commitment is made on long
term feasibility of this. We will see how it goes.
For more information, see the thread starting at
http://lists.alioth.debian.org/pipermail/perl-maintainers/2016-January/005241.html
-- Niko Tyni <ntyni@debian.org> Fri, 29 Jan 2016 10:28:42 +0200

16
debian/cross/README.source vendored Normal file
View File

@ -0,0 +1,16 @@
Notes for the perl package maintainers, and others who need to deal with
these files. Please read debian/cross/README first.
* by default, we assume that the config.sh files are valid if the current
Perl upstream version matches the one in the config.sh
* if the upstream version has changed, debian/config.debian exits with
a message indicating the need for refreshing the files
* this can also be triggered by creating debian/cross/<arch>/REFRESH; the
contents of this file are then shown when debian/config.debian bails out
* the REFRESH functionality should be used at least when modifying
Configure arguments in debian/config.debian
-- Niko Tyni <ntyni@debian.org> Fri, 29 Jan 2016 15:25:19 +0200

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:10.848846826 +0200
+++ config.sh.debug 2019-10-27 17:51:10.832846481 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=alpha-linux-gnu-gcc -Dcpp=alpha-linux-gnu-cpp -Dld=alpha-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=alpha-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/alpha-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/alpha-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/alpha-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/alpha-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=alpha-linux-gnu-gcc -Dcpp=alpha-linux-gnu-cpp -Dld=alpha-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=alpha-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/alpha-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/alpha-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/alpha-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/alpha-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/alpha-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:10.848846826 +0200
+++ config.sh.shared 2019-10-27 17:51:10.840846653 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=alpha-linux-gnu-gcc -Dcpp=alpha-linux-gnu-cpp -Dld=alpha-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=alpha-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/alpha-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/alpha-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/alpha-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/alpha-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=alpha-linux-gnu-gcc -Dcpp=alpha-linux-gnu-cpp -Dld=alpha-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TKRs5v/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=alpha-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/alpha-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/alpha-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/alpha-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/alpha-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/alpha-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/alpha/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:11.356857771 +0200
+++ config.sh.debug 2019-10-27 17:51:11.344857512 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnu-gcc -Dcpp=x86_64-linux-gnu-cpp -Dld=x86_64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/x86_64-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnu-gcc -Dcpp=x86_64-linux-gnu-cpp -Dld=x86_64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/x86_64-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/x86_64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:11.356857771 +0200
+++ config.sh.shared 2019-10-27 17:51:11.344857512 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnu-gcc -Dcpp=x86_64-linux-gnu-cpp -Dld=x86_64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/x86_64-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnu-gcc -Dcpp=x86_64-linux-gnu-cpp -Dld=x86_64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-jDnxQx/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/x86_64-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/x86_64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/amd64/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:11.836868113 +0200
+++ config.sh.debug 2019-10-27 17:51:11.824867854 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=aarch64-linux-gnu-gcc -Dcpp=aarch64-linux-gnu-cpp -Dld=aarch64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=aarch64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/aarch64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/aarch64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/aarch64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/aarch64-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=aarch64-linux-gnu-gcc -Dcpp=aarch64-linux-gnu-cpp -Dld=aarch64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=aarch64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/aarch64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/aarch64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/aarch64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/aarch64-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/aarch64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:11.836868113 +0200
+++ config.sh.shared 2019-10-27 17:51:11.828867941 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=aarch64-linux-gnu-gcc -Dcpp=aarch64-linux-gnu-cpp -Dld=aarch64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=aarch64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/aarch64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/aarch64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/aarch64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/aarch64-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=aarch64-linux-gnu-gcc -Dcpp=aarch64-linux-gnu-cpp -Dld=aarch64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-NGGjef/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=aarch64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/aarch64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/aarch64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/aarch64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/aarch64-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/aarch64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/arm64/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:12.256877162 +0200
+++ config.sh.debug 2019-10-27 17:51:12.244876903 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabi-gcc -Dcpp=arm-linux-gnueabi-cpp -Dld=arm-linux-gnueabi-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabi -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabi/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabi/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabi/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/arm-linux-gnueabi/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabi-gcc -Dcpp=arm-linux-gnueabi-cpp -Dld=arm-linux-gnueabi-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabi -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabi/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabi/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabi/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/arm-linux-gnueabi/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/arm-linux-gnueabi/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:12.256877162 +0200
+++ config.sh.shared 2019-10-27 17:51:12.248876989 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabi-gcc -Dcpp=arm-linux-gnueabi-cpp -Dld=arm-linux-gnueabi-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabi -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabi/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabi/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabi/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/arm-linux-gnueabi/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabi-gcc -Dcpp=arm-linux-gnueabi-cpp -Dld=arm-linux-gnueabi-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PeSUkK/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabi -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabi/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabi/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabi/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/arm-linux-gnueabi/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/arm-linux-gnueabi/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/armel/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:12.672886124 +0200
+++ config.sh.debug 2019-10-27 17:51:12.656885780 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabihf-gcc -Dcpp=arm-linux-gnueabihf-cpp -Dld=arm-linux-gnueabihf-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabihf -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabihf/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabihf/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabihf/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/arm-linux-gnueabihf/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabihf-gcc -Dcpp=arm-linux-gnueabihf-cpp -Dld=arm-linux-gnueabihf-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabihf -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabihf/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabihf/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabihf/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/arm-linux-gnueabihf/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/arm-linux-gnueabihf/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:12.672886124 +0200
+++ config.sh.shared 2019-10-27 17:51:12.660885866 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabihf-gcc -Dcpp=arm-linux-gnueabihf-cpp -Dld=arm-linux-gnueabihf-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabihf -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabihf/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabihf/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabihf/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/arm-linux-gnueabihf/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=arm-linux-gnueabihf-gcc -Dcpp=arm-linux-gnueabihf-cpp -Dld=arm-linux-gnueabihf-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-yfxQEM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=arm-linux-gnueabihf -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/arm-linux-gnueabihf/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/arm-linux-gnueabihf/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/arm-linux-gnueabihf/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/arm-linux-gnueabihf/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/arm-linux-gnueabihf/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/armhf/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

69
debian/cross/download-deb vendored Executable file
View File

@ -0,0 +1,69 @@
#!/bin/sh
# wrapper to download a binary package from a full APT repository
# (hopefully checking the archive signatures while at it)
#
# Copyright 2016 Niko Tyni <ntyni@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
# TODO: apt-key handling?
#
set -e
while getopts s:p:d:v: f
do
case $f in
p) package="$OPTARG";;
s) sources="$OPTARG";;
d) debdir="$OPTARG";;
v) version="$OPTARG";;
esac
done
shift `expr $OPTIND - 1`
if [ ! -n "$package" ] && [ -r debian/control ]; then
package=$(sed -n 's/^Package: *\(libperl5\..*\)/\1/ p' debian/control)
fi
if [ ! -n "$package" ]; then
echo "cannot guess name of package to download, aborting" 1>&2
exit 1
fi
if [ ! -n "$sources" ]; then
sources="deb http://httpredir.debian.org/debian unstable main"
fi
if [ ! -n "$version" ]; then
version=$(dpkg-parsechangelog -Sversion)
fi
if [ ! -n "$debdir" ]; then
debdir=.
fi
if [ $# = 0 ]; then
echo "Usage: $0 [ -p <package>[,<package2>,...] ] [ -d <debdir> ] [ -v <version> ] [ -s '<full sources.list line>' ] <arch> [...]" 1>&2
exit 1
fi
EXITCODE=0
for ARCH in "$@"
do
APTTMP=$(mktemp -d)
echo "$sources" > $APTTMP/sources.list
APTOPTIONS="-o APT::Architecture=$ARCH -o Dir::State=$APTTMP \
-o Dir::Cache=$APTTMP -o Debug::NoLocking=true \
-o Acquire::Languages=none \
-o Dir::Etc::Sourcelist=$APTTMP/sources.list"
apt-get $APTOPTIONS update
for p in $(echo $package | sed 's/,/ /g'); do
(cd "$debdir"; apt-get $APTOPTIONS download $p:$ARCH=$version) || EXITCODE=$?
done
rm -rf "$APTTMP"
done
exit $EXITCODE

76
debian/cross/extract-config-sh vendored Executable file
View File

@ -0,0 +1,76 @@
#!/bin/sh
# extract config.sh.* files from binary packages
#
# Copyright 2016 Niko Tyni <ntyni@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
set -e
if [ $# = 0 ]; then
echo "Usage: $0 <file.deb> [...]" 1>&2
exit 1
fi
# sanity check
if [ ! -d debian/cross ]; then
echo "This program is supposed to run in the perl Debian package source directory" 1>&2
exit 1
fi
for deb in "$@"; do
arch=$(dpkg-deb -W --showformat '${Architecture}' "$deb")
if [ ! -n "$arch" ]; then
echo "Could not get Debian architecture of $deb" 1>&2
exit 1
fi
if [ ! -d "debian/cross/$arch" ]; then
echo "Unknown architecture: $arch (mkdir debian/cross/$arch first?), skipping" 1>&2
continue
fi
archlist="$archlist $arch"
version=$(dpkg-deb -W --showformat '${Version}' "$deb")
if [ ! -n "$version" ]; then
echo "Could not get Debian version from $deb" 1>&2
exit 1
fi
# shameless reliance on GNU tar fancy functionality
# note that we expand ${arch} in this shell and not the subshell
# so we don't have to export it
if ! dpkg-deb --fsys-tarfile "$deb" | tar xf - --wildcards \
'*/config.sh.static.gz' \
'*/config.sh.debug.gz' \
'*/config.sh.shared.gz' \
--to-command='sh -c "gzip -dc > debian/cross/'${arch}'/$(basename $TAR_FILENAME .gz)"'
then
echo "no config.sh.* files in $deb, skipping" 1>&2
continue
fi
echo "# Extracted from Debian package version $version" >> debian/cross/$arch/config.sh.static
# store debug and shared configs as contextless patches
# the idea is to make it as easy (heh) as possible for bootstrappers
# so they only have to craft the static one by hand
for type in shared debug; do
( cd debian/cross/$arch && \
! diff -u0 config.sh.static config.sh.$type > config.sh.$type.patch && \
rm config.sh.$type )
done
if [ -d .git ]; then
git add debian/cross/$arch
fi
done
if [ -d .git ]; then
debs=$(sha1sum "$@")
git commit -m "Refresh cross build support files for$archlist" \
-m "Files extracted by $0 from:" \
-m "$debs"
fi

26
debian/cross/hppa/config.sh.debug.patch vendored Normal file
View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:13.176896984 +0200
+++ config.sh.debug 2019-10-27 17:51:13.164896725 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=hppa-linux-gnu-gcc -Dcpp=hppa-linux-gnu-cpp -Dld=hppa-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Dlddlflags=-shared -Dcccdlflags=-fPIC -Darchname=hppa-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/hppa-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/hppa-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/hppa-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/hppa-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=hppa-linux-gnu-gcc -Dcpp=hppa-linux-gnu-cpp -Dld=hppa-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Dlddlflags=-shared -Dcccdlflags=-fPIC -Darchname=hppa-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/hppa-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/hppa-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/hppa-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/hppa-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/hppa-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:13.176896984 +0200
+++ config.sh.shared 2019-10-27 17:51:13.168896811 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=hppa-linux-gnu-gcc -Dcpp=hppa-linux-gnu-cpp -Dld=hppa-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Dlddlflags=-shared -Dcccdlflags=-fPIC -Darchname=hppa-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/hppa-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/hppa-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/hppa-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/hppa-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=hppa-linux-gnu-gcc -Dcpp=hppa-linux-gnu-cpp -Dld=hppa-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-T98BCI/perl-5.30.0=. -Wformat -Werror=format-security -Dldflags= -Dlddlflags=-shared -Dcccdlflags=-fPIC -Darchname=hppa-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/hppa-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/hppa-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/hppa-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/hppa-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/hppa-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/hppa/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:13.624906636 +0200
+++ config.sh.debug 2019-10-27 17:51:13.612906377 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-gnu-gcc -Dcpp=i686-gnu-cpp -Dld=i686-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/i386-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-gnu-gcc -Dcpp=i686-gnu-cpp -Dld=i686-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/i386-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/i386-gnu/perl-base'
+otherlibdirs=' '
@@ -1259 +1257,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:13.624906636 +0200
+++ config.sh.shared 2019-10-27 17:51:13.616906464 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-gnu-gcc -Dcpp=i686-gnu-cpp -Dld=i686-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/i386-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-gnu-gcc -Dcpp=i686-gnu-cpp -Dld=i686-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-3zzyFc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/i386-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/i386-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1259 +1258,0 @@
-# Extracted from Debian package version 5.30.0-8

1259
debian/cross/hurd-i386/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

26
debian/cross/i386/config.sh.debug.patch vendored Normal file
View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:14.072916288 +0200
+++ config.sh.debug 2019-10-27 17:51:14.060916030 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-linux-gnu-gcc -Dcpp=i686-linux-gnu-cpp -Dld=i686-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/i386-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-linux-gnu-gcc -Dcpp=i686-linux-gnu-cpp -Dld=i686-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/i386-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/i386-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:14.072916288 +0200
+++ config.sh.shared 2019-10-27 17:51:14.060916030 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-linux-gnu-gcc -Dcpp=i686-linux-gnu-cpp -Dld=i686-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/i386-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=i686-linux-gnu-gcc -Dcpp=i686-linux-gnu-cpp -Dld=i686-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Bphsvp/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/i386-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/i386-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/i386-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/i386-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/i386/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2018-11-30 17:53:49.187523594 +0200
+++ config.sh.debug 2018-11-30 17:53:49.175523343 +0200
@@ -17,2 +17,2 @@
-config_args='-Dusethreads -Duselargefiles -Dcc=x86_64-kfreebsd-gnu-gcc -Dcpp=x86_64-kfreebsd-gnu-cpp -Dld=x86_64-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/x86_64-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/x86_64-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/x86_64-kfreebsd-gnu/perl-base'
-config_argc=40
+config_args='-Dusethreads -Duselargefiles -Dcc=x86_64-kfreebsd-gnu-gcc -Dcpp=x86_64-kfreebsd-gnu-cpp -Dld=x86_64-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/x86_64-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/x86_64-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=39
@@ -54 +54 @@
-config_arg36='-DDEBUGGING=-g'
+config_arg36='-DDEBUGGING=both'
@@ -58 +57,0 @@
-config_arg40='-Dotherlibdirs=/usr/lib/x86_64-kfreebsd-gnu/perl-base'
@@ -103 +102 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -125 +124 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -474 +473 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1003 +1002 @@
-otherlibdirs='/usr/lib/x86_64-kfreebsd-gnu/perl-base'
+otherlibdirs=' '
@@ -1254 +1252,0 @@
-# Extracted from Debian package version 5.28.0-4

View File

@ -0,0 +1,24 @@
--- config.sh.static 2018-11-30 17:53:49.187523594 +0200
+++ config.sh.shared 2018-11-30 17:53:49.179523426 +0200
@@ -17 +17 @@
-config_args='-Dusethreads -Duselargefiles -Dcc=x86_64-kfreebsd-gnu-gcc -Dcpp=x86_64-kfreebsd-gnu-cpp -Dld=x86_64-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/x86_64-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/x86_64-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/x86_64-kfreebsd-gnu/perl-base'
+config_args='-Dusethreads -Duselargefiles -Dcc=x86_64-kfreebsd-gnu-gcc -Dcpp=x86_64-kfreebsd-gnu-cpp -Dld=x86_64-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-gbaxFn/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/x86_64-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/x86_64-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.28.0'
@@ -57,2 +57,2 @@
-config_arg39='-Uuseshrplib'
-config_arg40='-Dotherlibdirs=/usr/lib/x86_64-kfreebsd-gnu/perl-base'
+config_arg39='-Duseshrplib'
+config_arg40='-Dlibperl=libperl.so.5.28.0'
@@ -474 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -920 +920 @@
-libperl='libperl.a'
+libperl='libperl.so.5.28.0'
@@ -1003 +1003 @@
-otherlibdirs='/usr/lib/x86_64-kfreebsd-gnu/perl-base'
+otherlibdirs=' '
@@ -1203 +1203 @@
-useshrplib='false'
+useshrplib='true'
@@ -1254 +1253,0 @@
-# Extracted from Debian package version 5.28.0-4

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2018-11-30 17:53:49.607532370 +0200
+++ config.sh.debug 2018-11-30 17:53:49.595532119 +0200
@@ -17,2 +17,2 @@
-config_args='-Dusethreads -Duselargefiles -Dcc=i686-kfreebsd-gnu-gcc -Dcpp=i686-kfreebsd-gnu-cpp -Dld=i686-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/i386-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/i386-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/i386-kfreebsd-gnu/perl-base'
-config_argc=40
+config_args='-Dusethreads -Duselargefiles -Dcc=i686-kfreebsd-gnu-gcc -Dcpp=i686-kfreebsd-gnu-cpp -Dld=i686-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/i386-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/i386-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=39
@@ -54 +54 @@
-config_arg36='-DDEBUGGING=-g'
+config_arg36='-DDEBUGGING=both'
@@ -58 +57,0 @@
-config_arg40='-Dotherlibdirs=/usr/lib/i386-kfreebsd-gnu/perl-base'
@@ -103 +102 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -125 +124 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -474 +473 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1003 +1002 @@
-otherlibdirs='/usr/lib/i386-kfreebsd-gnu/perl-base'
+otherlibdirs=' '
@@ -1254 +1252,0 @@
-# Extracted from Debian package version 5.28.0-4

View File

@ -0,0 +1,24 @@
--- config.sh.static 2018-11-30 17:53:49.607532370 +0200
+++ config.sh.shared 2018-11-30 17:53:49.599532203 +0200
@@ -17 +17 @@
-config_args='-Dusethreads -Duselargefiles -Dcc=i686-kfreebsd-gnu-gcc -Dcpp=i686-kfreebsd-gnu-cpp -Dld=i686-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/i386-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/i386-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/i386-kfreebsd-gnu/perl-base'
+config_args='-Dusethreads -Duselargefiles -Dcc=i686-kfreebsd-gnu-gcc -Dcpp=i686-kfreebsd-gnu-cpp -Dld=i686-kfreebsd-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hYqG0d/perl-5.28.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=i686-kfreebsd-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/i386-kfreebsd-gnu/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/i386-kfreebsd-gnu/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.0 -Dsitearch=/usr/local/lib/i386-kfreebsd-gnu/perl/5.28.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.28.0'
@@ -57,2 +57,2 @@
-config_arg39='-Uuseshrplib'
-config_arg40='-Dotherlibdirs=/usr/lib/i386-kfreebsd-gnu/perl-base'
+config_arg39='-Duseshrplib'
+config_arg40='-Dlibperl=libperl.so.5.28.0'
@@ -474 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -920 +920 @@
-libperl='libperl.a'
+libperl='libperl.so.5.28.0'
@@ -1003 +1003 @@
-otherlibdirs='/usr/lib/i386-kfreebsd-gnu/perl-base'
+otherlibdirs=' '
@@ -1203 +1203 @@
-useshrplib='false'
+useshrplib='true'
@@ -1254 +1253,0 @@
-# Extracted from Debian package version 5.28.0-4

File diff suppressed because one or more lines are too long

26
debian/cross/m68k/config.sh.debug.patch vendored Normal file
View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:14.544926458 +0200
+++ config.sh.debug 2019-10-27 17:51:14.532926199 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=m68k-linux-gnu-gcc -Dcpp=m68k-linux-gnu-cpp -Dld=m68k-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=m68k-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/m68k-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/m68k-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/m68k-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/m68k-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=m68k-linux-gnu-gcc -Dcpp=m68k-linux-gnu-cpp -Dld=m68k-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=m68k-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/m68k-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/m68k-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/m68k-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/m68k-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/m68k-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,33 @@
--- config.sh.static 2019-10-27 17:51:14.544926458 +0200
+++ config.sh.shared 2019-10-27 17:51:14.536926285 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=m68k-linux-gnu-gcc -Dcpp=m68k-linux-gnu-cpp -Dld=m68k-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=m68k-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/m68k-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/m68k-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/m68k-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/m68k-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=m68k-linux-gnu-gcc -Dcpp=m68k-linux-gnu-cpp -Dld=m68k-linux-gnu-gcc -Dccflags=-DDEBIAN -fno-regmove -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=m68k-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/m68k-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/m68k-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/m68k-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -25 +25 @@
-config_arg7='-Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security'
+config_arg7='-Dccflags=-DDEBIAN -fno-regmove -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/m68k-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -104 +104 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-regmove -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +126 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-regmove -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-mHTB9Z/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/m68k-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/m68k/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

26
debian/cross/mips/config.sh.debug.patch vendored Normal file
View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-06-20 10:45:02.607651549 +0300
+++ config.sh.debug 2019-06-20 10:45:02.595651061 +0300
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips-linux-gnu-gcc -Dcpp=mips-linux-gnu-cpp -Dld=mips-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/mips-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips-linux-gnu-gcc -Dcpp=mips-linux-gnu-cpp -Dld=mips-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/mips-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/mips-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-2

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-06-20 10:45:02.607651549 +0300
+++ config.sh.shared 2019-06-20 10:45:02.599651224 +0300
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips-linux-gnu-gcc -Dcpp=mips-linux-gnu-cpp -Dld=mips-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/mips-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips-linux-gnu-gcc -Dcpp=mips-linux-gnu-cpp -Dld=mips-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-LWlC0F/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/mips-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/mips-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-2

1261
debian/cross/mips/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:14.976935766 +0200
+++ config.sh.debug 2019-10-27 17:51:14.960935420 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips64el-linux-gnuabi64-gcc -Dcpp=mips64el-linux-gnuabi64-cpp -Dld=mips64el-linux-gnuabi64-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips64el-linux-gnuabi64 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips64el-linux-gnuabi64/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips64el-linux-gnuabi64/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips64el-linux-gnuabi64/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/mips64el-linux-gnuabi64/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips64el-linux-gnuabi64-gcc -Dcpp=mips64el-linux-gnuabi64-cpp -Dld=mips64el-linux-gnuabi64-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips64el-linux-gnuabi64 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips64el-linux-gnuabi64/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips64el-linux-gnuabi64/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips64el-linux-gnuabi64/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/mips64el-linux-gnuabi64/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/mips64el-linux-gnuabi64/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:14.976935766 +0200
+++ config.sh.shared 2019-10-27 17:51:14.964935507 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips64el-linux-gnuabi64-gcc -Dcpp=mips64el-linux-gnuabi64-cpp -Dld=mips64el-linux-gnuabi64-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips64el-linux-gnuabi64 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips64el-linux-gnuabi64/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips64el-linux-gnuabi64/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips64el-linux-gnuabi64/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/mips64el-linux-gnuabi64/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mips64el-linux-gnuabi64-gcc -Dcpp=mips64el-linux-gnuabi64-cpp -Dld=mips64el-linux-gnuabi64-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-Z4a6PS/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mips64el-linux-gnuabi64 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mips64el-linux-gnuabi64/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mips64el-linux-gnuabi64/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mips64el-linux-gnuabi64/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/mips64el-linux-gnuabi64/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/mips64el-linux-gnuabi64/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/mips64el/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:15.392944729 +0200
+++ config.sh.debug 2019-10-27 17:51:15.380944470 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mipsel-linux-gnu-gcc -Dcpp=mipsel-linux-gnu-cpp -Dld=mipsel-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mipsel-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mipsel-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mipsel-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mipsel-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/mipsel-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mipsel-linux-gnu-gcc -Dcpp=mipsel-linux-gnu-cpp -Dld=mipsel-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mipsel-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mipsel-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mipsel-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mipsel-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/mipsel-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/mipsel-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:15.392944729 +0200
+++ config.sh.shared 2019-10-27 17:51:15.384944556 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mipsel-linux-gnu-gcc -Dcpp=mipsel-linux-gnu-cpp -Dld=mipsel-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mipsel-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mipsel-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mipsel-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mipsel-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/mipsel-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=mipsel-linux-gnu-gcc -Dcpp=mipsel-linux-gnu-cpp -Dld=mipsel-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-hnX8iU/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=mipsel-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/mipsel-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/mipsel-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/mipsel-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/mipsel-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/mipsel-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/mipsel/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:15.852954640 +0200
+++ config.sh.debug 2019-10-27 17:51:15.840954381 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnu-gcc -Dcpp=powerpc-linux-gnu-cpp -Dld=powerpc-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnu-gcc -Dcpp=powerpc-linux-gnu-cpp -Dld=powerpc-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/powerpc-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/powerpc-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:15.852954640 +0200
+++ config.sh.shared 2019-10-27 17:51:15.840954381 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnu-gcc -Dcpp=powerpc-linux-gnu-cpp -Dld=powerpc-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnu-gcc -Dcpp=powerpc-linux-gnu-cpp -Dld=powerpc-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-4UFvTM/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/powerpc-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/powerpc-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/powerpc/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2018-12-02 12:32:40.949083707 +0200
+++ config.sh.debug 2018-12-02 12:32:40.937083346 +0200
@@ -17,2 +17,2 @@
-config_args='-Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnuspe-gcc -Dcpp=powerpc-linux-gnuspe-cpp -Dld=powerpc-linux-gnuspe-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnuspe -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/powerpc-linux-gnuspe/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnuspe/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.1 -Dsitearch=/usr/local/lib/powerpc-linux-gnuspe/perl/5.28.1 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc-linux-gnuspe/perl-base'
-config_argc=40
+config_args='-Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnuspe-gcc -Dcpp=powerpc-linux-gnuspe-cpp -Dld=powerpc-linux-gnuspe-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnuspe -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/powerpc-linux-gnuspe/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnuspe/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.1 -Dsitearch=/usr/local/lib/powerpc-linux-gnuspe/perl/5.28.1 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=39
@@ -54 +54 @@
-config_arg36='-DDEBUGGING=-g'
+config_arg36='-DDEBUGGING=both'
@@ -58 +57,0 @@
-config_arg40='-Dotherlibdirs=/usr/lib/powerpc-linux-gnuspe/perl-base'
@@ -103 +102 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -125 +124 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -474 +473 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1003 +1002 @@
-otherlibdirs='/usr/lib/powerpc-linux-gnuspe/perl-base'
+otherlibdirs=' '
@@ -1256 +1254,0 @@
-# Extracted from Debian package version 5.28.1-1

View File

@ -0,0 +1,24 @@
--- config.sh.static 2018-12-02 12:32:40.949083707 +0200
+++ config.sh.shared 2018-12-02 12:32:40.941083467 +0200
@@ -17 +17 @@
-config_args='-Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnuspe-gcc -Dcpp=powerpc-linux-gnuspe-cpp -Dld=powerpc-linux-gnuspe-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnuspe -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/powerpc-linux-gnuspe/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnuspe/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.1 -Dsitearch=/usr/local/lib/powerpc-linux-gnuspe/perl/5.28.1 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc-linux-gnuspe/perl-base'
+config_args='-Dusethreads -Duselargefiles -Dcc=powerpc-linux-gnuspe-gcc -Dcpp=powerpc-linux-gnuspe-cpp -Dld=powerpc-linux-gnuspe-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qjCtfu/perl-5.28.1=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc-linux-gnuspe -Dprefix=/usr -Dprivlib=/usr/share/perl/5.28 -Darchlib=/usr/lib/powerpc-linux-gnuspe/perl/5.28 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc-linux-gnuspe/perl5/5.28 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.28.1 -Dsitearch=/usr/local/lib/powerpc-linux-gnuspe/perl/5.28.1 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.28.1'
@@ -57,2 +57,2 @@
-config_arg39='-Uuseshrplib'
-config_arg40='-Dotherlibdirs=/usr/lib/powerpc-linux-gnuspe/perl-base'
+config_arg39='-Duseshrplib'
+config_arg40='-Dlibperl=libperl.so.5.28.1'
@@ -474 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -920 +920 @@
-libperl='libperl.a'
+libperl='libperl.so.5.28.1'
@@ -1003 +1003 @@
-otherlibdirs='/usr/lib/powerpc-linux-gnuspe/perl-base'
+otherlibdirs=' '
@@ -1203 +1203 @@
-useshrplib='false'
+useshrplib='true'
@@ -1256 +1255,0 @@
-# Extracted from Debian package version 5.28.1-1

1256
debian/cross/powerpcspe/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:16.360965585 +0200
+++ config.sh.debug 2019-10-27 17:51:16.348965326 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64-linux-gnu-gcc -Dcpp=powerpc64-linux-gnu-cpp -Dld=powerpc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc64-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64-linux-gnu-gcc -Dcpp=powerpc64-linux-gnu-cpp -Dld=powerpc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/powerpc64-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/powerpc64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:16.360965585 +0200
+++ config.sh.shared 2019-10-27 17:51:16.352965413 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64-linux-gnu-gcc -Dcpp=powerpc64-linux-gnu-cpp -Dld=powerpc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc64-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64-linux-gnu-gcc -Dcpp=powerpc64-linux-gnu-cpp -Dld=powerpc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-86Ltzu/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/powerpc64-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/powerpc64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/ppc64/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:16.860976357 +0200
+++ config.sh.debug 2019-10-27 17:51:16.848976099 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64le-linux-gnu-gcc -Dcpp=powerpc64le-linux-gnu-cpp -Dld=powerpc64le-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64le-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64le-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64le-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64le-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc64le-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64le-linux-gnu-gcc -Dcpp=powerpc64le-linux-gnu-cpp -Dld=powerpc64le-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64le-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64le-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64le-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64le-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/powerpc64le-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/powerpc64le-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:16.860976357 +0200
+++ config.sh.shared 2019-10-27 17:51:16.852976185 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64le-linux-gnu-gcc -Dcpp=powerpc64le-linux-gnu-cpp -Dld=powerpc64le-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64le-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64le-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64le-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64le-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/powerpc64le-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=powerpc64le-linux-gnu-gcc -Dcpp=powerpc64le-linux-gnu-cpp -Dld=powerpc64le-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-qEs9Tf/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=powerpc64le-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/powerpc64le-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/powerpc64le-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/powerpc64le-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/powerpc64le-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/powerpc64le-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/ppc64el/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:17.300985838 +0200
+++ config.sh.debug 2019-10-27 17:51:17.288985578 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=riscv64-linux-gnu-gcc -Dcpp=riscv64-linux-gnu-cpp -Dld=riscv64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=riscv64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/riscv64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/riscv64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/riscv64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/riscv64-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=riscv64-linux-gnu-gcc -Dcpp=riscv64-linux-gnu-cpp -Dld=riscv64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=riscv64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/riscv64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/riscv64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/riscv64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/riscv64-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/riscv64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:17.300985838 +0200
+++ config.sh.shared 2019-10-27 17:51:17.288985578 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=riscv64-linux-gnu-gcc -Dcpp=riscv64-linux-gnu-cpp -Dld=riscv64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=riscv64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/riscv64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/riscv64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/riscv64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/riscv64-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=riscv64-linux-gnu-gcc -Dcpp=riscv64-linux-gnu-cpp -Dld=riscv64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-PqpBTc/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=riscv64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/riscv64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/riscv64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/riscv64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/riscv64-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/riscv64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/riscv64/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:17.788996352 +0200
+++ config.sh.debug 2019-10-27 17:51:17.780996179 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=s390x-linux-gnu-gcc -Dcpp=s390x-linux-gnu-cpp -Dld=s390x-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=s390x-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/s390x-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/s390x-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/s390x-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/s390x-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=s390x-linux-gnu-gcc -Dcpp=s390x-linux-gnu-cpp -Dld=s390x-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=s390x-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/s390x-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/s390x-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/s390x-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/s390x-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/s390x-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:17.788996352 +0200
+++ config.sh.shared 2019-10-27 17:51:17.780996179 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=s390x-linux-gnu-gcc -Dcpp=s390x-linux-gnu-cpp -Dld=s390x-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=s390x-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/s390x-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/s390x-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/s390x-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/s390x-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=s390x-linux-gnu-gcc -Dcpp=s390x-linux-gnu-cpp -Dld=s390x-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-8vYu3L/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=s390x-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/s390x-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/s390x-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/s390x-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/s390x-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/s390x-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/s390x/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

26
debian/cross/sh4/config.sh.debug.patch vendored Normal file
View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:18.285007038 +0200
+++ config.sh.debug 2019-10-27 17:51:18.273006780 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sh4-linux-gnu-gcc -Dcpp=sh4-linux-gnu-cpp -Dld=sh4-linux-gnu-gcc -Dccflags=-DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sh4-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sh4-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sh4-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sh4-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/sh4-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sh4-linux-gnu-gcc -Dcpp=sh4-linux-gnu-cpp -Dld=sh4-linux-gnu-gcc -Dccflags=-DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sh4-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sh4-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sh4-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sh4-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/sh4-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/sh4-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

24
debian/cross/sh4/config.sh.shared.patch vendored Normal file
View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:18.285007038 +0200
+++ config.sh.shared 2019-10-27 17:51:18.277006866 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sh4-linux-gnu-gcc -Dcpp=sh4-linux-gnu-cpp -Dld=sh4-linux-gnu-gcc -Dccflags=-DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sh4-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sh4-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sh4-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sh4-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/sh4-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sh4-linux-gnu-gcc -Dcpp=sh4-linux-gnu-cpp -Dld=sh4-linux-gnu-gcc -Dccflags=-DDEBIAN -mieee -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-xSbboh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sh4-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sh4-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sh4-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sh4-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/sh4-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/sh4-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/sh4/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:18.725016518 +0200
+++ config.sh.debug 2019-10-27 17:51:18.713016260 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sparc64-linux-gnu-gcc -Dcpp=sparc64-linux-gnu-cpp -Dld=sparc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sparc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sparc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sparc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sparc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/sparc64-linux-gnu/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sparc64-linux-gnu-gcc -Dcpp=sparc64-linux-gnu-cpp -Dld=sparc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sparc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sparc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sparc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sparc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/sparc64-linux-gnu/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/sparc64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:18.725016518 +0200
+++ config.sh.shared 2019-10-27 17:51:18.717016346 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sparc64-linux-gnu-gcc -Dcpp=sparc64-linux-gnu-cpp -Dld=sparc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sparc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sparc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sparc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sparc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/sparc64-linux-gnu/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=sparc64-linux-gnu-gcc -Dcpp=sparc64-linux-gnu-cpp -Dld=sparc64-linux-gnu-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-TdfeLh/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=sparc64-linux-gnu -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/sparc64-linux-gnu/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/sparc64-linux-gnu/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/sparc64-linux-gnu/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/sparc64-linux-gnu/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/sparc64-linux-gnu/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/sparc64/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

26
debian/cross/x32/config.sh.debug.patch vendored Normal file
View File

@ -0,0 +1,26 @@
--- config.sh.static 2019-10-27 17:51:19.201026774 +0200
+++ config.sh.debug 2019-10-27 17:51:19.189026515 +0200
@@ -17,2 +17,2 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnux32-gcc -Dcpp=x86_64-linux-gnux32-cpp -Dld=x86_64-linux-gnux32-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnux32 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnux32/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnux32/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnux32/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/x86_64-linux-gnux32/perl-base'
-config_argc=41
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnux32-gcc -Dcpp=x86_64-linux-gnux32-cpp -Dld=x86_64-linux-gnux32-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnux32 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnux32/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnux32/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnux32/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=both -Doptimize=-O2 -dEs -Uuseshrplib'
+config_argc=40
@@ -55 +55 @@
-config_arg37='-DDEBUGGING=-g'
+config_arg37='-DDEBUGGING=both'
@@ -59 +58,0 @@
-config_arg41='-Dotherlibdirs=/usr/lib/x86_64-linux-gnux32/perl-base'
@@ -104 +103 @@
-ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
+ccflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
@@ -126 +125 @@
-cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include'
+cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -fwrapv -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include'
@@ -475 +474 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -1008 +1007 @@
-otherlibdirs='/usr/lib/x86_64-linux-gnux32/perl-base'
+otherlibdirs=' '
@@ -1261 +1259,0 @@
-# Extracted from Debian package version 5.30.0-8

24
debian/cross/x32/config.sh.shared.patch vendored Normal file
View File

@ -0,0 +1,24 @@
--- config.sh.static 2019-10-27 17:51:19.201026774 +0200
+++ config.sh.shared 2019-10-27 17:51:19.193026602 +0200
@@ -17 +17 @@
-config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnux32-gcc -Dcpp=x86_64-linux-gnux32-cpp -Dld=x86_64-linux-gnux32-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnux32 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnux32/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnux32/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnux32/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Uuseshrplib -Dotherlibdirs=/usr/lib/x86_64-linux-gnux32/perl-base'
+config_args='-Dmksymlinks -Dusethreads -Duselargefiles -Dcc=x86_64-linux-gnux32-gcc -Dcpp=x86_64-linux-gnux32-cpp -Dld=x86_64-linux-gnux32-gcc -Dccflags=-DDEBIAN -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fdebug-prefix-map=/build/perl-s7MVjL/perl-5.30.0=. -fstack-protector-strong -Wformat -Werror=format-security -Dldflags= -Wl,-z,relro -Dlddlflags=-shared -Wl,-z,relro -Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnux32 -Dprefix=/usr -Dprivlib=/usr/share/perl/5.30 -Darchlib=/usr/lib/x86_64-linux-gnux32/perl/5.30 -Dvendorprefix=/usr -Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/x86_64-linux-gnux32/perl5/5.30 -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.30.0 -Dsitearch=/usr/local/lib/x86_64-linux-gnux32/perl/5.30.0 -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Dsiteman3dir=/usr/local/man/man3 -Duse64bitint -Dman1ext=1 -Dman3ext=3perl -Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm -Ui_libutil -Ui_xlocale -Uversiononly -DDEBUGGING=-g -Doptimize=-O2 -dEs -Duseshrplib -Dlibperl=libperl.so.5.30.0'
@@ -58,2 +58,2 @@
-config_arg40='-Uuseshrplib'
-config_arg41='-Dotherlibdirs=/usr/lib/x86_64-linux-gnux32/perl-base'
+config_arg40='-Duseshrplib'
+config_arg41='-Dlibperl=libperl.so.5.30.0'
@@ -475 +475 @@
-d_perl_otherlibdirs='define'
+d_perl_otherlibdirs='undef'
@@ -925 +925 @@
-libperl='libperl.a'
+libperl='libperl.so.5.30.0'
@@ -1008 +1008 @@
-otherlibdirs='/usr/lib/x86_64-linux-gnux32/perl-base'
+otherlibdirs=' '
@@ -1208 +1208 @@
-useshrplib='false'
+useshrplib='true'
@@ -1261 +1260,0 @@
-# Extracted from Debian package version 5.30.0-8

1261
debian/cross/x32/config.sh.static vendored Normal file

File diff suppressed because one or more lines are too long

2
debian/errno.ph vendored Normal file
View File

@ -0,0 +1,2 @@
use Errno ':POSIX';
1;

18
debian/fake-config vendored Executable file
View File

@ -0,0 +1,18 @@
#!/bin/sh
# copy Config.pm from the first argument to a temporary directory
# then run the rest with that prepended to @INC
# better ideas welcome...
set -e
T=$(mktemp -d)
d="$1"
shift
cp "$d/Config.pm" "$d/Config_heavy.pl" "$T"
p="$1"
shift
status=0
"$p" "-I$T" "$@" || status=$?
rm -rf "$T"
exit $status

24
debian/fixheaders vendored Normal file
View File

@ -0,0 +1,24 @@
#!perl -w
#
# Fix up generated .ph files
#
use strict;
use File::Find;
my @args = @ARGV;
@ARGV = ();
find sub { push @ARGV, $File::Find::name if -f and /\.ph$/ }, @args;
$^I = '';
die "$0: no headers under @args?\n" unless @ARGV;
while (<>)
{
# discard casts
s/(?<!\$sizeof\{)(&__const\s+)?\\'struct[^\\']+\\'[^;]*;/1;/g;
s/'char'\[\d+\]/1/g;
print;
}

86
debian/gen-patchlevel vendored Executable file
View File

@ -0,0 +1,86 @@
#!/bin/sh
set -e
# Copyright 2011 Niko Tyni
#
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
# Given a list of patches in debian/patches, write out one line
# per patch containing the patch description, bug pointers and
# upstream commit information where available.
#
# The output format is designed to be included into Perl's patchlevel.h,
# which eventually controls what 'perl -V' prints.
#
# When called with the '-d' option, outputs the timestamp of the newest
# patch, for the purposes of getting $patchlevel_date in perlbug right
prefix="DEBPKG:"
version=""
patchdir=debian/patches
showdate=false
while getopts p:v:d f
do
case $f in
p) prefix=$OPTARG;;
v) version=$OPTARG;;
d) showdate=true
esac
done
shift `expr $OPTIND - 1`
in=${1:-$patchdir/series}
if [ -n "$version" ]; then
version=" for $version"
fi
newest_mtime=0
while read patch strip
do
if $showdate; then
mtime=$(stat --format='%Y' $patchdir/$patch)
if [ "$mtime" -gt "$newest_mtime" ]; then
newest_mtime="$mtime"
fi
continue
fi
patchname=$(echo $patch | sed 's/\.diff$//')
< $patchdir/$patch sed -e '/^Subject:/ { N; s/\n / / }' | sed -n -e '
# massage the patch headers
s|^Bug: .*https\?://rt\.perl\.org/.*id=\(.*\).*|[perl #\1]|; tprepend;
s|^Bug: .*https\?://rt\.cpan\.org/.*id=\(.*\).*|[rt.cpan.org #\1]|; tprepend;
s|^Bug-Debian: [^0-9]*\([0-9]\{5,\}\)|https://bugs.debian.org/\1|; tprepend;
s/^\(Subject\|Description\): //; tappend;
s|^Origin: .*https\?://perl5\.git\.perl\.org/perl\.git/commit\(diff\)\?/\(.......\).*|[\2]|; tprepend;
# post-process at the end of input
$ { x;
# include the version number in the patchlevel.h description (if available)
s/List packaged patches/&'"${version}"'/;
# escape any backslashes and double quotes
s|\\|\\\\|g; s|"|\\"|g;
# add a prefix
s|^|\t,"'"$prefix$patchname"' - |;
# newlines away
s/\n/ /g; s/ */ /g;
# add a suffix
s/ *$/"/; p
};
# stop all processing
d;
# label: append to the hold space
:append H; d;
# label: prepend to the hold space
:prepend x; H; d;
'
done < $in
if $showdate; then
echo $newest_mtime
fi

9
debian/headers vendored Normal file
View File

@ -0,0 +1,9 @@
asm/termios.h
syscall.h
syslimits.h
syslog.h
sys/ioctl.h
sys/socket.h
sys/time.h
wait.h
sysexits.h

21
debian/libnet.cfg vendored Normal file
View File

@ -0,0 +1,21 @@
# Prior to perl 5.8.8-7, libnet was a seperate package with a debconf
# configuration managed config in /etc/libnet.cfg which is used if
# present. Remove the following line, or the old file before making
# changes below.
return do '/etc/libnet.cfg' if -f '/etc/libnet.cfg';
{
nntp_hosts => [ qw {} ],
snpp_hosts => [ qw {} ],
pop3_hosts => [ qw {} ],
smtp_hosts => [ qw {} ],
ph_hosts => [ qw {} ],
daytime_hosts => [ qw {} ],
time_hosts => [ qw {} ],
inet_domain => undef,
ftp_firewall => qq {},
ftp_firewall_type => qq {},
ftp_ext_passive => 0,
ftp_int_passive => 0,
local_netmask => qq {},
}

1
debian/libperl-dev.docs vendored Normal file
View File

@ -0,0 +1 @@
debian/README.cross

8
debian/libperl-dev.install vendored Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# This is normally inherited from debian/rules
# but just in case somebody calls us directly
archtriplet=${archtriplet:-$(dpkg-architecture -qDEB_HOST_MULTIARCH)}
exec cat <<EOF
build-static/libperl.a usr/lib/$archtriplet/
EOF

11
debian/libperl-dev.links vendored Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# These are normally inherited from debian/rules
# but just in case somebody calls us directly
version=${version:-$(bash debian/config.debian --version)}
fullversion=${fullversion:-$(bash debian/config.debian --full-version)}
archtriplet=${archtriplet:-$(dpkg-architecture -qDEB_HOST_MULTIARCH)}
exec cat <<EOF
usr/lib/$archtriplet/libperl.so.$version usr/lib/$archtriplet/libperl.so
usr/lib/$archtriplet/perl/cross-config-$fullversion usr/lib/$archtriplet/perl/cross-config
EOF

2
debian/libperl-dev.lintian-overrides vendored Normal file
View File

@ -0,0 +1,2 @@
# see #914013
missing-depends-on-sensible-utils

1
debian/libperl-dev.maintscript vendored Normal file
View File

@ -0,0 +1 @@
symlink_to_dir /usr/share/doc/libperl-dev perl 5.22.1-7~

15
debian/libperl5.30.install vendored Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# These are normally inherited from debian/rules
# but just in case somebody calls us directly
fullversion=${fullversion:-$(bash debian/config.debian --full-version)}
archtriplet=${archtriplet:-$(dpkg-architecture -qDEB_HOST_MULTIARCH)}
exec cat <<EOF
usr/lib/$archtriplet/perl
usr/lib/$archtriplet/libperl.so.$fullversion
usr/bin/perl
usr/bin/cpan
debian/cross/README usr/lib/$archtriplet/perl/debian-config-data-$fullversion
debian/errno.ph usr/lib/$archtriplet/perl/$fullversion
EOF

12
debian/libperl5.30.links vendored Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
# These are normally inherited from debian/rules
# but just in case somebody calls us directly
version=${version:-$(bash debian/config.debian --version)}
fullversion=${fullversion:-$(bash debian/config.debian --full-version)}
archtriplet=${archtriplet:-$(dpkg-architecture -qDEB_HOST_MULTIARCH)}
exec cat <<EOF
usr/lib/$archtriplet/perl/$fullversion/Config.pm usr/lib/$archtriplet/perl/cross-config-$fullversion/Config.pm
usr/lib/$archtriplet/perl/$fullversion/Config_heavy.pl usr/lib/$archtriplet/perl/cross-config-$fullversion/Config_heavy.pl
usr/lib/$archtriplet/libperl.so.$fullversion usr/lib/$archtriplet/libperl.so.$version
EOF

2
debian/libperl5.30.manpages vendored Normal file
View File

@ -0,0 +1,2 @@
usr/share/man/man1/perl.1
usr/share/man/man1/cpan.1

1930
debian/libperl5.30.symbols vendored Normal file

File diff suppressed because it is too large Load Diff

14
debian/mkprovides vendored Normal file
View File

@ -0,0 +1,14 @@
#!perl -w
#
# Create perlapi-<ver> provides substvar
#
BEGIN { unshift @INC, 'lib' }
use strict;
use Config;
print +(join ', ', map "perlapi-$_",
sort $Config{version},
grep /^[0-9.]+$/,
split ' ', $Config{inc_version_list}), "\n";

View File

@ -0,0 +1,32 @@
From: Niko Tyni <ntyni@debian.org>
Date: Sat, 14 Oct 2017 17:47:09 +0300
Subject: Regenerate Configure et al. after probe unit changes
Bug-Debian: https://bugs.debian.org/762638
---
Configure | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/Configure b/Configure
index 684a9c0..c83ca50 100755
--- a/Configure
+++ b/Configure
@@ -1487,8 +1487,7 @@ archname=''
usereentrant='undef'
: List of libraries we want.
: If anyone needs extra -lxxx, put those in a hint file.
-libswanted="cl pthread socket bind inet nsl ndbm gdbm dbm db malloc dl ld"
-libswanted="$libswanted sun m crypt sec util c cposix posix ucb bsd BSD"
+libswanted='gdbm gdbm_compat db dl m c crypt'
: We probably want to search /usr/shlib before most other libraries.
: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
@@ -23840,7 +23839,7 @@ sunos*X4*)
;;
*) case "$usedl" in
$define|true|[yY]*)
- set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'`
+ set X `echo " $libs " | sed -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldb @ @'`
shift
perllibs="$*"
;;

Some files were not shown because too many files have changed in this diff Show More