diff options
author | wiz <wiz@pkgsrc.org> | 2012-12-25 15:30:14 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-12-25 15:30:14 +0000 |
commit | d733d6aa623d3a239c19ba157681e3b221258e1c (patch) | |
tree | 10ea692c6cca6f2067f18f6d1830c623da133f9a /print | |
parent | ac15a0fac9232c1c9d6b2b5dec3596bce39c1617 (diff) | |
download | pkgsrc-d733d6aa623d3a239c19ba157681e3b221258e1c.tar.gz |
Disable compiler version check in configure.
This way, the build progresses to a clang error.
When looking at this, consider upgrading the package to 2.16 first, perhaps
it's already fixed there.
Diffstat (limited to 'print')
-rw-r--r-- | print/lilypond/distinfo | 3 | ||||
-rw-r--r-- | print/lilypond/patches/patch-configure | 24 |
2 files changed, 26 insertions, 1 deletions
diff --git a/print/lilypond/distinfo b/print/lilypond/distinfo index 0c68a1e7867..3556d55834a 100644 --- a/print/lilypond/distinfo +++ b/print/lilypond/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.14 2012/12/15 10:01:20 marino Exp $ +$NetBSD: distinfo,v 1.15 2012/12/25 15:30:14 wiz Exp $ SHA1 (lilypond-2.14.2.tar.gz) = 0ea657bb184d9d6a2e3f6bca91e6b0d62a3a013e RMD160 (lilypond-2.14.2.tar.gz) = 74123b2db40519feaf8144fd19becf3ad81738e7 @@ -6,4 +6,5 @@ Size (lilypond-2.14.2.tar.gz) = 15224418 bytes SHA1 (patch-aa) = 50b9029a067b3f324da497465c7b2e6a2384f3f0 SHA1 (patch-ab) = 5f210ada53a5062da1173c257095ebddf407d67d SHA1 (patch-ac) = d9565da9b315f2867882052d57394132d7e824a4 +SHA1 (patch-configure) = b0c73d828f26fb8db895ace55a678a6d7b09db0e SHA1 (patch-lily_music-sequence.cc) = 8f8c8ce78ae5a420065f7d084a9bcecfc707f322 diff --git a/print/lilypond/patches/patch-configure b/print/lilypond/patches/patch-configure new file mode 100644 index 00000000000..deec1dde84e --- /dev/null +++ b/print/lilypond/patches/patch-configure @@ -0,0 +1,24 @@ +$NetBSD: patch-configure,v 1.1 2012/12/25 15:30:14 wiz Exp $ + +Disable c/c++ version check; it fails e.g. with clang emulating gcc. + +--- configure.orig 2012-12-25 15:26:16.000000000 +0000 ++++ configure +@@ -4485,7 +4485,7 @@ $as_echo_n "checking $r version... " >&6 + ` + { $as_echo "$as_me:$LINENO: result: $ver" >&5 + $as_echo "$ver" >&6; } +- if test "$num" -lt "$req"; then ++ if false; then + + eval "REQUIRED"=\"`eval echo \"'$'REQUIRED\" \""$r >= 3.4 (installed: $ver)"\"`\" + +@@ -4978,7 +4978,7 @@ $as_echo_n "checking $r version... " >&6 + ` + { $as_echo "$as_me:$LINENO: result: $ver" >&5 + $as_echo "$ver" >&6; } +- if test "$num" -lt "$req"; then ++ if false; then + + eval "REQUIRED"=\"`eval echo \"'$'REQUIRED\" \""$r >= 3.4 (installed: $ver)"\"`\" + |