diff options
author | agc <agc@pkgsrc.org> | 2002-07-23 21:29:28 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-07-23 21:29:28 +0000 |
commit | e273e36d67f10013e487f22cf9347a32b1d7470b (patch) | |
tree | 4c1501544ea0bcbb805f1e02c3432020555434d5 /lang/guile | |
parent | b18a72ebbedef8c3e6d49eba99b0e942687c648a (diff) | |
download | pkgsrc-e273e36d67f10013e487f22cf9347a32b1d7470b.tar.gz |
Apply the suggested fix from Urban Boquist (urban@boquist.net) in PR 15128
to avoid problems if guile is built in the background.
Diffstat (limited to 'lang/guile')
-rw-r--r-- | lang/guile/distinfo | 3 | ||||
-rw-r--r-- | lang/guile/patches/patch-ae | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/lang/guile/distinfo b/lang/guile/distinfo index 7e3d773dabc..2c98ff85e2e 100644 --- a/lang/guile/distinfo +++ b/lang/guile/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2001/04/19 15:00:51 agc Exp $ +$NetBSD: distinfo,v 1.3 2002/07/23 21:29:28 agc Exp $ SHA1 (guile-1.4.tar.gz) = b143efaff0820f7c701eea0b25aa87af2693c4ac Size (guile-1.4.tar.gz) = 1132852 bytes SHA1 (patch-ad) = 6cd829a21ff8d8d269fd005ce6e49e936cad7887 +SHA1 (patch-ae) = 6be83481941ae79ea9c9e9c7d9f8dbe433342f46 diff --git a/lang/guile/patches/patch-ae b/lang/guile/patches/patch-ae new file mode 100644 index 00000000000..b9be47ad655 --- /dev/null +++ b/lang/guile/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2002/07/23 21:29:29 agc Exp $ + +--- guile-readline/configure 2002/07/23 21:24:40 1.1 ++++ guile-readline/configure 2002/07/23 21:25:00 +@@ -1723,7 +1723,7 @@ + readline (""); + } + EOF +-if { (eval echo configure:1727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:1727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest < /dev/null; exit) 2>/dev/null + then + guile_cv_sigwinch_sa_restart_cleared=yes + else |