Add missing G_HAVE_GINT64 conditionalization.
authorOwen Taylor <otaylor@redhat.com>
Thu, 4 Oct 2001 05:13:12 +0000 (05:13 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Thu, 4 Oct 2001 05:13:12 +0000 (05:13 +0000)
Thu Oct  4 01:10:52 2001  Owen Taylor  <otaylor@redhat.com>

        * gparamspecs.h: Add missing G_HAVE_GINT64 conditionalization.

gobject/ChangeLog
gobject/gparamspecs.h

index 52266cc..e85f5ad 100644 (file)
@@ -1,3 +1,7 @@
+Thu Oct  4 01:10:52 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gparamspecs.h: Add missing G_HAVE_GINT64 conditionalization.
+
 Wed Oct  3 16:02:24 2001  Owen Taylor  <otaylor@redhat.com>
 
        * glib-genmarshal.c gparamspecs.[ch] gvalue.h 
index ba48053..77bfd17 100644 (file)
@@ -355,6 +355,8 @@ GParamSpec* g_param_spec_object      (const gchar    *name,
                                          const gchar    *blurb,
                                          GType           object_type,
                                          GParamFlags     flags);
+
+#ifdef G_HAVE_GINT64
 GParamSpec*    g_param_spec_int64       (const gchar    *name,
                                          const gchar    *nick,
                                          const gchar    *blurb,
@@ -369,7 +371,7 @@ GParamSpec* g_param_spec_uint64      (const gchar    *name,
                                          guint64         maximum,
                                          guint64         default_value,
                                          GParamFlags     flags);
-
+#endif /* G_HAVE_GINT64 */
 
 G_END_DECLS