mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/ldns: Patched to build with perl-5.22.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
373945ed39
commit
c5144dc81c
2 changed files with 15 additions and 0 deletions
|
@ -81,6 +81,9 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Fix manpage building with perl-5.22 (thanks to Arch Linux)
|
||||
patch -p1 < $CWD/perl-recent.patch
|
||||
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
|
|
12
development/ldns/perl-recent.patch
Normal file
12
development/ldns/perl-recent.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
diff -Naur old/doc/doxyparse.pl new/doc/doxyparse.pl
|
||||
--- old/doc/doxyparse.pl 2014-01-11 06:04:41.000000000 +0900
|
||||
+++ new/doc/doxyparse.pl 2015-08-08 22:29:34.216889652 +0900
|
||||
@@ -273,7 +273,7 @@
|
||||
|
||||
print MAN $MAN_MIDDLE;
|
||||
|
||||
- if (defined(@$also)) {
|
||||
+ if (@$also) {
|
||||
print MAN "\n.SH SEE ALSO\n\\fI";
|
||||
print MAN join "\\fR, \\fI", @$also;
|
||||
print MAN "\\fR.\nAnd ";
|
Loading…
Reference in a new issue