diff options
author | Stefano Karapetsas <[email protected]> | 2013-07-18 15:04:53 -0700 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-07-18 15:04:53 -0700 |
commit | 93a2ed0d29cd905560eb0a285d18c8096d79e931 (patch) | |
tree | 766020da86fe753012613d85e9623858b2c10927 /cut-n-paste-code/libegg | |
parent | 39195bc02c24724e9a44af37fbbb463261e2f190 (diff) | |
parent | 875a88f1d74e2a6888ab1ee02f1b728a1fafc327 (diff) | |
download | caja-93a2ed0d29cd905560eb0a285d18c8096d79e931.tar.bz2 caja-93a2ed0d29cd905560eb0a285d18c8096d79e931.tar.xz |
Merge pull request #140 from Semmu/dev-gtk3
First gtk3 support commit.
Diffstat (limited to 'cut-n-paste-code/libegg')
-rw-r--r-- | cut-n-paste-code/libegg/eggsmclient-private.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cut-n-paste-code/libegg/eggsmclient-private.h b/cut-n-paste-code/libegg/eggsmclient-private.h index a8da9c7a..e187285b 100644 --- a/cut-n-paste-code/libegg/eggsmclient-private.h +++ b/cut-n-paste-code/libegg/eggsmclient-private.h @@ -20,7 +20,12 @@ #ifndef __EGG_SM_CLIENT_PRIVATE_H__ #define __EGG_SM_CLIENT_PRIVATE_H__ -#include <gdkconfig.h> +#include <gtk/gtk.h> + +#if !GTK_CHECK_VERSION(3, 0, 0) + #include <gdkconfig.h> +#endif + #include "eggsmclient.h" #ifdef __cplusplus |