diff options
author | Stefano Karapetsas <[email protected]> | 2014-03-17 19:07:26 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2015-03-08 21:06:42 +0100 |
commit | bebf48053b95f6e7ff3ed7e920c48f7387b05167 (patch) | |
tree | 0e9dc29a7045d8978d9aeb55ae5bc46e00f76284 | |
parent | 0f870fa1738fbea3b0ca3f5a853fb8eb3a445f70 (diff) | |
download | marco-bebf48053b95f6e7ff3ed7e920c48f7387b05167.tar.bz2 marco-bebf48053b95f6e7ff3ed7e920c48f7387b05167.tar.xz |
Use zenity instead of mate-dialogs
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | src/core/util.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index da9ec831..3022cbcc 100644 --- a/configure.ac +++ b/configure.ac @@ -489,9 +489,9 @@ fi AC_SUBST(GDK_PIXBUF_CSOURCE) -AC_PATH_PROG(MATEDIALOG, matedialog, no) -if test x"$MATEDIALOG" = xno; then - AC_MSG_ERROR([matedialog not found in your path - needed for dialogs]) +AC_PATH_PROG(ZENITY, matedialog, no) +if test x"$ZENITY" = xno; then + AC_MSG_ERROR([zenity not found in your path - needed for dialogs]) fi AC_ARG_ENABLE(debug, diff --git a/src/core/util.c b/src/core/util.c index 9b29d2df..ac721009 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -559,7 +559,7 @@ meta_show_dialog (const char *type, g_slist_length (columns)*2 + g_slist_length (entries))); - argvl[i++] = "matedialog"; + argvl[i++] = "zenity"; argvl[i++] = type; argvl[i++] = "--screen"; argvl[i++] = screen_number_text; |