diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-06-28 19:52:19 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-06-29 09:00:34 +0200 |
commit | 4a88d2e4184a3fe0a96aacaf504266d0972582ba (patch) | |
tree | cf91a185622c23bf0f1d0bca96ac0ab54c0f4f14 /source/ap | |
parent | 233fc224df15f411fad82cafffa1fb5caa79ec03 (diff) | |
download | current-4a88d2e4184a3fe0a96aacaf504266d0972582ba.tar.gz current-4a88d2e4184a3fe0a96aacaf504266d0972582ba.tar.xz |
Thu Jun 28 19:52:19 UTC 201820180628195219
a/dcron-4.5-x86_64-9.txz: Rebuilt.
Dropped two patches that were breaking @daily jobs.
Thanks to Dennis Snow for the bug report.
ap/texinfo-6.5-x86_64-6.txz: Rebuilt.
Rebuilt with --disable-perl-xs (use native Perl modules instead of C
versions), which fixes the FTBFS issues we were having with glibc.
Thanks to nobodino, ponce, and mmawhin for the help.
Diffstat (limited to 'source/ap')
-rwxr-xr-x | source/ap/texinfo/texinfo.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/ap/texinfo/texinfo.SlackBuild b/source/ap/texinfo/texinfo.SlackBuild index 4d7784cea..7675f86d6 100755 --- a/source/ap/texinfo/texinfo.SlackBuild +++ b/source/ap/texinfo/texinfo.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=texinfo VERSION=${VERSION:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-5} +BUILD=${BUILD:-6} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -84,6 +84,9 @@ find . \ # Fix for perl-5.28.0: zcat $CWD/texinfo.fix.unescaped.left.brace.diff.gz | patch -p1 --verbose || exit 1 +# The --disable-perl-xs below prevents some perl extensions from being replaced +# by C versions which have been known to choke over UTF-8 issues: + CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ @@ -93,6 +96,7 @@ CFLAGS="$SLKCFLAGS" \ --infodir=/usr/info \ --disable-static \ --docdir=/usr/doc/texinfo-$VERSION \ + --disable-perl-xs \ --build=$ARCH-slackware-linux || exit 1 make $NUMJOBS || make || exit 1 |