diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-22 21:03:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-22 21:03:15 +0000 |
commit | 1fe1682e2d4e57be6773f80879722b7b81cbd4b6 (patch) | |
tree | 9ad377893b9e1ee27c2baa5c50ce7852eb9e9b7b /ham | |
parent | cf69f3137e192e71f9612c02db5b9774d0d10f3e (diff) | |
download | pkgsrc-1fe1682e2d4e57be6773f80879722b7b81cbd4b6.tar.gz |
Fixes "test ==".
Diffstat (limited to 'ham')
-rw-r--r-- | ham/gnuradio-howto/distinfo | 3 | ||||
-rw-r--r-- | ham/gnuradio-howto/patches/patch-aa | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/ham/gnuradio-howto/distinfo b/ham/gnuradio-howto/distinfo index 1b1c87b595c..7b0deb73ff8 100644 --- a/ham/gnuradio-howto/distinfo +++ b/ham/gnuradio-howto/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2006/04/27 03:11:12 wulf Exp $ +$NetBSD: distinfo,v 1.4 2006/10/22 21:03:15 rillig Exp $ SHA1 (gr-howto-write-a-block-0.6.tar.gz) = 3f7eaebe48aa9bb3d523df309eea080458dbf776 RMD160 (gr-howto-write-a-block-0.6.tar.gz) = b3a578e429588cdda2ea2690cec696a5a4e6e532 Size (gr-howto-write-a-block-0.6.tar.gz) = 366472 bytes +SHA1 (patch-aa) = 2f5d2592c577454f60142047829c246b8a96a0bb diff --git a/ham/gnuradio-howto/patches/patch-aa b/ham/gnuradio-howto/patches/patch-aa new file mode 100644 index 00000000000..9a589f12b51 --- /dev/null +++ b/ham/gnuradio-howto/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2006/10/22 21:03:15 rillig Exp $ + +--- config/gr_boost.m4.orig 2005-11-22 04:55:54.000000000 +0100 ++++ config/gr_boost.m4 2006-10-22 23:02:05.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 |