From ecfe47af731e2d66813e45bbd0167978bdc7b70d Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 25 Sep 2024 22:00:38 -0400 Subject: [PATCH] docs: Drop a note about old GLib We require GLib 2.76 now. --- docs/reference/gtk/getting_started.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/reference/gtk/getting_started.md b/docs/reference/gtk/getting_started.md index 64e97d4059..e58ba82b5e 100644 --- a/docs/reference/gtk/getting_started.md +++ b/docs/reference/gtk/getting_started.md @@ -66,10 +66,6 @@ You can compile the program above with GCC using: gcc $( pkg-config --cflags gtk4 ) -o example-0 example-0.c $( pkg-config --libs gtk4 ) ``` -**Note**: If the above compilation does not work due to an error regarding `G_APPLICATION_DEFAULT_FLAGS` -this could be due to your OS providing an older version of GLib. For GLib versions older than 2.74 you -will need to replace `G_APPLICATION_DEFAULT_FLAGS` with `G_APPLICATION_FLAGS_NONE` in this example, and -others in this documentation. For more information on how to compile a GTK application, please refer to the [Compiling GTK Applications](compiling.html) section in this reference.