pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/rsynth Let's assume for a moment you want to tes...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a495b48a7bb3
branches:  trunk
changeset: 504475:a495b48a7bb3
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Sun Dec 11 21:10:29 2005 +0000

description:
Let's assume for a moment you want to test for a function in a library.
Does it make sense that the test program should actually be compilable?
GCC 3.4 rejects atan called with no arguments after all.

diffstat:

 audio/rsynth/distinfo         |   3 ++-
 audio/rsynth/patches/patch-ab |  28 ++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+), 1 deletions(-)

diffs (46 lines):

diff -r 836677a7efd9 -r a495b48a7bb3 audio/rsynth/distinfo
--- a/audio/rsynth/distinfo     Sun Dec 11 20:51:07 2005 +0000
+++ b/audio/rsynth/distinfo     Sun Dec 11 21:10:29 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2005/02/23 20:39:51 agc Exp $
+$NetBSD: distinfo,v 1.3 2005/12/11 21:10:29 joerg Exp $
 
 SHA1 (rsynth/rsynth-2.0.tar.gz) = 50693c68eb74cf82405c7d402d31d3c811ad4515
 RMD160 (rsynth/rsynth-2.0.tar.gz) = 02efbf2e3db504c5c8fb76e8e21253c48900fbfb
@@ -16,3 +16,4 @@
 RMD160 (rsynth/phoneset.0.4) = 9565dcb4db24fc0b0cfd16ea31f45994f24e2753
 Size (rsynth/phoneset.0.4) = 629 bytes
 SHA1 (patch-aa) = 59b0b765461adec5140a8867c7a668cd87d71281
+SHA1 (patch-ab) = 9305005ff26bdb309d2ca8c10e4713fb21d9c0d6
diff -r 836677a7efd9 -r a495b48a7bb3 audio/rsynth/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/rsynth/patches/patch-ab     Sun Dec 11 21:10:29 2005 +0000
@@ -0,0 +1,28 @@
+$NetBSD: patch-ab,v 1.3 2005/12/11 21:10:29 joerg Exp $
+
+--- configure.orig     2005-12-11 20:56:09.000000000 +0000
++++ configure
+@@ -1329,9 +1329,10 @@ cat > conftest.$ac_ext <<EOF
+ #line 1330 "configure"
+ #include "confdefs.h"
+ 
++double val;
+ int main() { return 0; }
+ int t() {
+-atan()
++atan(val)
+ ; return 0; }
+ EOF
+ if eval $ac_link; then
+@@ -1368,9 +1369,10 @@ cat > conftest.$ac_ext <<EOF
+ #line 1369 "configure"
+ #include "confdefs.h"
+ 
++double val;
+ int main() { return 0; }
+ int t() {
+-atan()
++atan(val)
+ ; return 0; }
+ EOF
+ if eval $ac_link; then



Home | Main Index | Thread Index | Old Index