summaryrefslogtreecommitdiff
path: root/pmt
diff options
context:
space:
mode:
Diffstat (limited to 'pmt')
-rw-r--r--pmt/ChangeLog2
-rw-r--r--pmt/Makefile.am2
-rw-r--r--pmt/README2
-rw-r--r--pmt/doc/Makefile.am2
-rw-r--r--pmt/src/Makefile.am2
-rw-r--r--pmt/src/lib/Makefile.am2
-rwxr-xr-xpmt/src/lib/generate_unv.py4
-rw-r--r--pmt/src/lib/pmt.cc2
-rw-r--r--pmt/src/lib/pmt.h2
-rw-r--r--pmt/src/lib/pmt_int.h2
-rw-r--r--pmt/src/lib/pmt_io.cc2
-rw-r--r--pmt/src/lib/pmt_pool.cc2
-rw-r--r--pmt/src/lib/pmt_pool.h2
-rw-r--r--pmt/src/lib/pmt_serialize.cc2
-rw-r--r--pmt/src/lib/qa_pmt.cc2
-rw-r--r--pmt/src/lib/qa_pmt.h2
-rw-r--r--pmt/src/lib/qa_pmt_prims.cc2
-rw-r--r--pmt/src/lib/qa_pmt_prims.h2
-rw-r--r--pmt/src/lib/test_pmt.cc2
-rw-r--r--pmt/src/scheme/Makefile.am2
-rw-r--r--pmt/src/scheme/gnuradio/Makefile.am2
-rwxr-xr-xpmt/src/scheme/gnuradio/gen-serial-tags.scm4
-rw-r--r--pmt/src/scheme/gnuradio/macros-etc.scm2
-rw-r--r--pmt/src/scheme/gnuradio/pmt-serial-tags.scm2
-rw-r--r--pmt/src/scheme/gnuradio/pmt-serialize.scm2
25 files changed, 27 insertions, 27 deletions
diff --git a/pmt/ChangeLog b/pmt/ChangeLog
index 941fa89c9..c91893c9e 100644
--- a/pmt/ChangeLog
+++ b/pmt/ChangeLog
@@ -11,7 +11,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/Makefile.am b/pmt/Makefile.am
index c83370c18..305102027 100644
--- a/pmt/Makefile.am
+++ b/pmt/Makefile.am
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/README b/pmt/README
index 89330686b..59a1f4ac3 100644
--- a/pmt/README
+++ b/pmt/README
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/doc/Makefile.am b/pmt/doc/Makefile.am
index 18b82831a..a806b25cf 100644
--- a/pmt/doc/Makefile.am
+++ b/pmt/doc/Makefile.am
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/Makefile.am b/pmt/src/Makefile.am
index df73ba515..8ce9b3d02 100644
--- a/pmt/src/Makefile.am
+++ b/pmt/src/Makefile.am
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/Makefile.am b/pmt/src/lib/Makefile.am
index b77f6201b..ab23586c1 100644
--- a/pmt/src/lib/Makefile.am
+++ b/pmt/src/lib/Makefile.am
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/generate_unv.py b/pmt/src/lib/generate_unv.py
index 8e9821f10..2abafa4c1 100755
--- a/pmt/src/lib/generate_unv.py
+++ b/pmt/src/lib/generate_unv.py
@@ -6,7 +6,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
@@ -51,7 +51,7 @@ header = """\
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt.cc b/pmt/src/lib/pmt.cc
index 9378953c1..b896adaa2 100644
--- a/pmt/src/lib/pmt.cc
+++ b/pmt/src/lib/pmt.cc
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt.h b/pmt/src/lib/pmt.h
index dcf1ce668..6aeae773b 100644
--- a/pmt/src/lib/pmt.h
+++ b/pmt/src/lib/pmt.h
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt_int.h b/pmt/src/lib/pmt_int.h
index e82ce50e2..d2b557521 100644
--- a/pmt/src/lib/pmt_int.h
+++ b/pmt/src/lib/pmt_int.h
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt_io.cc b/pmt/src/lib/pmt_io.cc
index 2d7af68b2..3bbf430e2 100644
--- a/pmt/src/lib/pmt_io.cc
+++ b/pmt/src/lib/pmt_io.cc
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt_pool.cc b/pmt/src/lib/pmt_pool.cc
index 16ab9c61e..8f1329a7e 100644
--- a/pmt/src/lib/pmt_pool.cc
+++ b/pmt/src/lib/pmt_pool.cc
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt_pool.h b/pmt/src/lib/pmt_pool.h
index fd9cc0638..ac0c07bb6 100644
--- a/pmt/src/lib/pmt_pool.h
+++ b/pmt/src/lib/pmt_pool.h
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/pmt_serialize.cc b/pmt/src/lib/pmt_serialize.cc
index 45f688be5..1f1b57c89 100644
--- a/pmt/src/lib/pmt_serialize.cc
+++ b/pmt/src/lib/pmt_serialize.cc
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/qa_pmt.cc b/pmt/src/lib/qa_pmt.cc
index 11047e3bb..250befafa 100644
--- a/pmt/src/lib/qa_pmt.cc
+++ b/pmt/src/lib/qa_pmt.cc
@@ -5,7 +5,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/qa_pmt.h b/pmt/src/lib/qa_pmt.h
index ee913f0ee..43a6dbf67 100644
--- a/pmt/src/lib/qa_pmt.h
+++ b/pmt/src/lib/qa_pmt.h
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/qa_pmt_prims.cc b/pmt/src/lib/qa_pmt_prims.cc
index 4a665fe53..c36a5e972 100644
--- a/pmt/src/lib/qa_pmt_prims.cc
+++ b/pmt/src/lib/qa_pmt_prims.cc
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/qa_pmt_prims.h b/pmt/src/lib/qa_pmt_prims.h
index a390343bd..be49a30e4 100644
--- a/pmt/src/lib/qa_pmt_prims.h
+++ b/pmt/src/lib/qa_pmt_prims.h
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/lib/test_pmt.cc b/pmt/src/lib/test_pmt.cc
index 0ba0e8755..034785f4e 100644
--- a/pmt/src/lib/test_pmt.cc
+++ b/pmt/src/lib/test_pmt.cc
@@ -6,7 +6,7 @@
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/scheme/Makefile.am b/pmt/src/scheme/Makefile.am
index 7700a1fc0..4980063d7 100644
--- a/pmt/src/scheme/Makefile.am
+++ b/pmt/src/scheme/Makefile.am
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/scheme/gnuradio/Makefile.am b/pmt/src/scheme/gnuradio/Makefile.am
index 12bc9b115..f2ae43afe 100644
--- a/pmt/src/scheme/gnuradio/Makefile.am
+++ b/pmt/src/scheme/gnuradio/Makefile.am
@@ -5,7 +5,7 @@
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/scheme/gnuradio/gen-serial-tags.scm b/pmt/src/scheme/gnuradio/gen-serial-tags.scm
index 5bcf8015a..7b9087228 100755
--- a/pmt/src/scheme/gnuradio/gen-serial-tags.scm
+++ b/pmt/src/scheme/gnuradio/gen-serial-tags.scm
@@ -9,7 +9,7 @@
;;;
;;; GNU Radio is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 2, or (at your option)
+;;; the Free Software Foundation; either version 3, or (at your option)
;;; any later version.
;;;
;;; GNU Radio is distributed in the hope that it will be useful,
@@ -81,7 +81,7 @@
""
"GNU Radio is free software; you can redistribute it and/or modify"
"it under the terms of the GNU General Public License as published by"
- "the Free Software Foundation; either version 2, or (at your option)"
+ "the Free Software Foundation; either version 3, or (at your option)"
"any later version."
""
"GNU Radio is distributed in the hope that it will be useful,"
diff --git a/pmt/src/scheme/gnuradio/macros-etc.scm b/pmt/src/scheme/gnuradio/macros-etc.scm
index 518c1ffe1..ac2a4a342 100644
--- a/pmt/src/scheme/gnuradio/macros-etc.scm
+++ b/pmt/src/scheme/gnuradio/macros-etc.scm
@@ -6,7 +6,7 @@
;;;
;;; GNU Radio is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 2, or (at your option)
+;;; the Free Software Foundation; either version 3, or (at your option)
;;; any later version.
;;;
;;; GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/scheme/gnuradio/pmt-serial-tags.scm b/pmt/src/scheme/gnuradio/pmt-serial-tags.scm
index 4dd183034..646a751ea 100644
--- a/pmt/src/scheme/gnuradio/pmt-serial-tags.scm
+++ b/pmt/src/scheme/gnuradio/pmt-serial-tags.scm
@@ -6,7 +6,7 @@
;;;
;;; GNU Radio is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 2, or (define at your option)
+;;; the Free Software Foundation; either version 3, or (define at your option)
;;; any later version.
;;;
;;; GNU Radio is distributed in the hope that it will be useful,
diff --git a/pmt/src/scheme/gnuradio/pmt-serialize.scm b/pmt/src/scheme/gnuradio/pmt-serialize.scm
index a39f9cf50..c1d32d75b 100644
--- a/pmt/src/scheme/gnuradio/pmt-serialize.scm
+++ b/pmt/src/scheme/gnuradio/pmt-serialize.scm
@@ -5,7 +5,7 @@
;;;
;;; GNU Radio is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 2, or (at your option)
+;;; the Free Software Foundation; either version 3, or (at your option)
;;; any later version.
;;;
;;; GNU Radio is distributed in the hope that it will be useful,