Imported Upstream version 2.64.1 upstream/2.64.1
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 7 Sep 2020 07:23:46 +0000 (00:23 -0700)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 7 Sep 2020 07:23:46 +0000 (00:23 -0700)
NEWS
configure.ac
glib/glibmm/random.h
glib/glibmm/timer.h
glib/src/miscutils.hg
glib/src/module.hg
glib/src/uriutils.hg
glib/src/variantiter.hg
meson.build

diff --git a/NEWS b/NEWS
index fa45fb0..40991b3 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+2.64.1: (stable):
+
+Glib:
+* Add missing #includes
+  (Kjell Ahlstedt) Issue #69 (Kalev Lember)
+
+
 2.64.0 (stable):
 
 Glib:
index 8cc53c8..3a067c2 100644 (file)
@@ -15,7 +15,7 @@
 ## You should have received a copy of the GNU Lesser General Public License
 ## along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
-AC_INIT([glibmm], [2.64.0],
+AC_INIT([glibmm], [2.64.1],
         [https://gitlab.gnome.org/GNOME/glibmm/issues],
         [glibmm], [http://www.gtkmm.org/])
 AC_PREREQ([2.59])
index 83d2caa..e4dd444 100644 (file)
@@ -19,6 +19,7 @@
  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <glibmmconfig.h>
 #include <glib.h>
 
 extern "C" {
index 43fff37..cbb5b44 100644 (file)
@@ -19,6 +19,8 @@
  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <glibmmconfig.h>
+
 extern "C" {
 using GTimer = struct _GTimer;
 }
index 4ec3137..f474254 100644 (file)
@@ -18,6 +18,7 @@ _DEFS(glibmm,glib)
 
 #include <glibmm/arrayhandle.h>
 #include <glibmm/ustring.h>
+#include <glibmm/utility.h>
 
 namespace Glib
 {
index e0e23aa..9101665 100644 (file)
@@ -16,6 +16,7 @@
 
 _DEFS(glibmm,glib)
 
+#include <glibmmconfig.h>
 #include <string>
 
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
index 7078a7d..e82f52c 100644 (file)
@@ -16,6 +16,7 @@
 
 _DEFS(glibmm,glib)
 
+#include <glibmmconfig.h>
 #include <string>
 
 namespace Glib
index a35c2e5..e8ae5b1 100644 (file)
@@ -14,7 +14,9 @@
  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <glibmmconfig.h>
 #include <glib.h>
+
 _DEFS(glibmm,glib)
 
 namespace Glib
index 2e6be38..a25f06a 100644 (file)
@@ -1,7 +1,7 @@
 # This file is part of glibmm.
 
 project('glibmm', 'cpp',
-  version: '2.64.0',
+  version: '2.64.1',
   license: 'LGPLv2.1+',
   default_options: [
     'cpp_std=c++11'