diff options
author | Milian Wolff <milian.wolff@kdab.com> | 2018-01-10 16:26:10 +0100 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2018-01-23 13:37:59 +0100 |
commit | 4d78cf97d7b1629556df68fc461922fda930d9ec (patch) | |
tree | def6d4a54cc937ade083bbbbdd2c63649fd27678 /config_host | |
parent | f74cec2457664f4b32abcde7e874061b60ad665d (diff) |
Extend build system to support linking against KDE Frameworks 5
Pass --enable-kde5 to autogen.sh to enable this feature. Then
add kde5 to the list of externals to link against KF5. I will
introduce other code that depends on KF5 though which will
leverage this feature.
Change-Id: I17e434a53ac769000b0f805b1f41cdc5c2c84ee2
Reviewed-on: https://gerrit.libreoffice.org/47715
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'config_host')
-rw-r--r-- | config_host/config_kde5.h.in | 10 | ||||
-rw-r--r-- | config_host/config_vclplug.h.in | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/config_host/config_kde5.h.in b/config_host/config_kde5.h.in new file mode 100644 index 000000000000..af42a5edcf6a --- /dev/null +++ b/config_host/config_kde5.h.in @@ -0,0 +1,10 @@ +/* +Settings for KDE5 integration. +*/ + +#ifndef CONFIG_KDE5_H +#define CONFIG_KDE5_H + +#define KDE5_HAVE_GLIB 0 + +#endif diff --git a/config_host/config_vclplug.h.in b/config_host/config_vclplug.h.in index 510d0d25229c..b7b9624cdf79 100644 --- a/config_host/config_vclplug.h.in +++ b/config_host/config_vclplug.h.in @@ -9,5 +9,6 @@ Settings about which X11 desktops have support enabled. #define ENABLE_GTK 0 #define ENABLE_KDE4 0 +#define ENABLE_KDE5 0 #endif |