diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2012-04-11 10:24:04 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-04-12 21:41:46 -0400 |
commit | 398ba38cfe159ede25edd2cd0c5a14f052b5ebea (patch) | |
tree | e49da62a6b29439818423e087a4be371df24ee80 /configure.ac | |
parent | 1713cbe8d0ee9a610a448aa8d27cf7d7ddf5ad41 (diff) | |
download | gtk+-398ba38cfe159ede25edd2cd0c5a14f052b5ebea.tar.gz |
application-window: try to use the desktop name in the fallback menu
Try to fetch the name from the application desktop file for the
fallback menu if possible, instead of forcing applications to use
g_set_application_name or hardcoding "Application".
https://bugzilla.gnome.org/show_bug.cgi?id=673882
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f94997b726..5f23a73bc7 100644 --- a/configure.ac +++ b/configure.ac @@ -1292,6 +1292,9 @@ GTK_PRIVATE_PACKAGES="" if test "x$enable_x11_backend" = xyes; then GTK_PRIVATE_PACKAGES="$GTK_PRIVATE_PACKAGES pangoft2" fi +if test "$have_gio_unix" = "yes"; then + GTK_PRIVATE_PACKAGES="$GTK_PRIVATE_PACKAGES gio-unix-2.0" +fi GTK_EXTRA_LIBS= GTK_EXTRA_CFLAGS= |