summaryrefslogtreecommitdiff
path: root/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2014-10-11 12:30:34 +0000
committerKurt Jaeger <pi@FreeBSD.org>2014-10-11 12:30:34 +0000
commitbde89730f331f30f50d4bb95f5ba3bfd31bc0872 (patch)
tree2e1ce92632b1c0d63907055f4df9bc5727939ca3 /astro/gpstk/files/patch-apps-swrx-IQStream.hpp
parent- Fix build problem (plist generation) with export_xvid.so symlink (diff)
astro/gpstk: 2.0 -> 2.5
http://www.gpstk.org/bin/view/Development/ReleaseNotes21 http://www.gpstk.org/bin/view/Development/ReleaseNotes22 http://www.gpstk.org/bin/view/Development/ReleaseNotes23 http://www.gpstk.org/bin/view/Development/ReleaseNotes24 http://www.gpstk.org/bin/view/Development/ReleaseNotes25 Switchover from build tool jam to cmake, with lots of restructuring of code.
Notes
Notes: svn path=/head/; revision=370634
Diffstat (limited to 'astro/gpstk/files/patch-apps-swrx-IQStream.hpp')
-rw-r--r--astro/gpstk/files/patch-apps-swrx-IQStream.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/astro/gpstk/files/patch-apps-swrx-IQStream.hpp b/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
deleted file mode 100644
index 779ab9c4c5ce..000000000000
--- a/astro/gpstk/files/patch-apps-swrx-IQStream.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
---- apps/swrx/IQStream.hpp.orig 2012-06-27 22:22:33 +0800
-+++ apps/swrx/IQStream.hpp
-@@ -130,6 +130,9 @@ namespace gpstk
- inline IQStream& operator<<(IQStream& s, const std::complex<float>& v)
- { s.writeComplex(v); return s; };
-
-+ inline IQStream& operator<<(IQStream& s, const std::complex<double>& v)
-+ { s.writeComplex(v); return s; };
-+
-
- class IQ1Stream : public IQStream
- {