diff options
author | Ted Gould <ted@gould.cx> | 2012-02-07 11:11:34 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-02-07 11:11:34 -0600 |
commit | e9987ce4005173f81f177b3151208e5f749e7f7c (patch) | |
tree | d80f7c2eddace19b0825138ac3356c4d2f7714f7 | |
parent | 5ae829c79f7bbb889f4876732b96469de5eaf01b (diff) | |
download | ayatana-indicator-session-e9987ce4005173f81f177b3151208e5f749e7f7c.tar.gz ayatana-indicator-session-e9987ce4005173f81f177b3151208e5f749e7f7c.tar.bz2 ayatana-indicator-session-e9987ce4005173f81f177b3151208e5f749e7f7c.zip |
Adding flags into the build to make sure we know if we're GTK3 or not
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3e5fa97..a34450c 100644 --- a/configure.ac +++ b/configure.ac @@ -51,6 +51,7 @@ AS_IF([test "x$with_gtk" = x3], ], [AC_MSG_FAILURE([Value for --with-indicator-gtk was neither 2 nor 3])] ) + AC_SUBST(APPLET_CFLAGS) AC_SUBST(APPLET_LIBS) @@ -77,6 +78,11 @@ AS_IF([test "x$with_gtk" = x3], AC_SUBST(SESSIONERVICE_CFLAGS) AC_SUBST(SESSIONERVICE_LIBS) +AM_CONDITIONAL([USE_GTK3], [test "x$with_gtk" = "x3"]) +AS_IF([test "x$with_gtk" = x3], [ + AC_DEFINE(HAVE_GTK3, 1, [whether gtk3 is available]) + ]) + ########################### # GTK Logout Helper ########################### |