diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-14 01:44:23 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-14 01:44:23 +0000 |
commit | 7be8c25d5aa6bcafe53a98bed96707697185d85c (patch) | |
tree | 6b468f0d6fbd1d873d3b46927c905036037a1b35 /ham | |
parent | cb958ce8079eb1bc2d4ecd196290f29c7ca7c3b6 (diff) | |
download | pkgsrc-7be8c25d5aa6bcafe53a98bed96707697185d85c.tar.gz |
Fixed "test ==".
Diffstat (limited to 'ham')
-rw-r--r-- | ham/gnuradio-core/distinfo | 3 | ||||
-rw-r--r-- | ham/gnuradio-core/patches/patch-af | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/ham/gnuradio-core/distinfo b/ham/gnuradio-core/distinfo index 79f11c62ada..ff0d5ce38ce 100644 --- a/ham/gnuradio-core/distinfo +++ b/ham/gnuradio-core/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2006/05/28 17:28:17 joerg Exp $ +$NetBSD: distinfo,v 1.6 2006/10/14 01:48:51 rillig Exp $ SHA1 (gnuradio-core-2.8.tar.gz) = d60e1ca7ad4cdf6c58c041bd705ed1d6a720c877 RMD160 (gnuradio-core-2.8.tar.gz) = fc7107244bfac3b9facb18f7cf49b0d734f337b0 @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 1c57f97b26ba7594043f3fa24d8b3fad1c50fc76 SHA1 (patch-ac) = f7fe23cce5bfadfd6f99713caca1d0f5fd308e75 SHA1 (patch-ad) = b60be38b16b48caa990969d14673d9b56581ed9c SHA1 (patch-ae) = ef7c38e1f3a7f0629cd728af18daf0310905e094 +SHA1 (patch-af) = 9d0905f8b40237e421f66f69c539858470a3d079 diff --git a/ham/gnuradio-core/patches/patch-af b/ham/gnuradio-core/patches/patch-af new file mode 100644 index 00000000000..6c7c3c15ae9 --- /dev/null +++ b/ham/gnuradio-core/patches/patch-af @@ -0,0 +1,15 @@ +$NetBSD: patch-af,v 1.1 2006/10/14 01:48:51 rillig Exp $ + +--- config/gr_boost.m4.orig 2005-11-22 04:53:32.000000000 +0100 ++++ config/gr_boost.m4 2006-10-14 03:47:12.000000000 +0200 +@@ -43,8 +43,8 @@ AC_DEFUN([GR_REQUIRE_BOOST_INCLUDES], + [path to boost c++ include files]), + [ + # "yes" and "no" are bogus answers +- if test x"$with_boost_include_dir" == xyes || +- test x"$with_boost_include_dir" == xno; then ++ if test x"$with_boost_include_dir" = xyes || ++ test x"$with_boost_include_dir" = xno; then + gr_boost_include_dir= + else + gr_boost_include_dir=$with_boost_include_dir |