]> Pileus Git - ~andy/gtk/commitdiff
Mention xxx_DISABLE_DEPRECATED and GDK_MULTIHEAD_SAFE.
authorMatthias Clasen <maclas@gmx.de>
Sat, 1 Feb 2003 01:19:30 +0000 (01:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 1 Feb 2003 01:19:30 +0000 (01:19 +0000)
2003-02-01  Matthias Clasen  <maclas@gmx.de>

* gtk/compiling.sgml: Mention xxx_DISABLE_DEPRECATED and
GDK_MULTIHEAD_SAFE.

docs/reference/ChangeLog
docs/reference/gtk/compiling.sgml

index 0a5653af576c42507b2600b3aaca026f97e57421..87b3a311ae85cddbf453978ab4917919fb20cdc6 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-01  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/compiling.sgml: Mention xxx_DISABLE_DEPRECATED and
+       GDK_MULTIHEAD_SAFE. 
+
 2003-01-31  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/tmpl/gtkmain.sgml: Deprecate the gtk_timeout_*, gtk_idle_*
index 609bc0c7757e340c1c5c228012a0f9e1821784d5..a5909b805149a8c4c1dcd7754aab4bdaf907ab22 100644 (file)
@@ -49,6 +49,25 @@ $ cc `pkg-config --cflags --libs gtk+-linux-fb-2.0` hello.c -o hello
 </programlisting>
 </para>
 
-</refsect1>
+<para>
+If you want to make sure that your program doesn't use any deprecated 
+functions, you can define the preprocessor symbol GTK_DISABLE_DEPRECATED
+by using the command line option <literal>-DGTK_DISABLE_DEPRECATED=1</literal>.
+There are similar symbols GDK_DISABLE_DEPRECATED, 
+GDK_PIXBUF_DISABLE_DEPRECATED and G_DISABLE_DEPRECATED for GDK, GdkPixbuf and
+GLib. 
+</para>
+
+<para>
+If you want to make sure that your program doesn't use any functions which 
+may be problematic in a multihead setting, you can define the preprocessor
+symbol GDK_MULTIHEAD_SAFE by using the command line option 
+<literal>-DGTK_MULTIHEAD_SAFE=1</literal>.
+</para>
 
+</refsect1>
 </refentry>
+
+
+
+