diff options
author | Ted Gould <ted@gould.cx> | 2010-12-07 20:46:33 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-07 20:46:33 -0600 |
commit | a413ebac8c43f24d72cfeb983170204418201b58 (patch) | |
tree | 7faf4c5ad905cd493018888b7b4519a1e069406a /src/indicator-application.c | |
parent | f5e7b8efe61d35c65422284f49e5d01a614a9deb (diff) | |
parent | 12d94d3b9aa17214cadec6e98831356330cead51 (diff) | |
download | libayatana-appindicator-a413ebac8c43f24d72cfeb983170204418201b58.tar.gz libayatana-appindicator-a413ebac8c43f24d72cfeb983170204418201b58.tar.bz2 libayatana-appindicator-a413ebac8c43f24d72cfeb983170204418201b58.zip |
Import upstream version 0.2.90
Diffstat (limited to 'src/indicator-application.c')
-rw-r--r-- | src/indicator-application.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/indicator-application.c b/src/indicator-application.c index 36e1446..ecf19e8 100644 --- a/src/indicator-application.c +++ b/src/indicator-application.c @@ -21,6 +21,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* G Stuff */ #include <glib.h> @@ -29,7 +32,11 @@ with this program. If not, see <http://www.gnu.org/licenses/>. /* DBus Stuff */ #include <dbus/dbus-glib.h> +#ifdef HAVE_GTK3 +#include <libdbusmenu-gtk3/menu.h> +#else #include <libdbusmenu-gtk/menu.h> +#endif /* Indicator Stuff */ #include <libindicator/indicator.h> |