diff options
author | Ross Burton <ross.burton@intel.com> | 2013-06-17 16:39:35 +0100 |
---|---|---|
committer | Ross Burton <ross.burton@intel.com> | 2013-06-17 16:39:35 +0100 |
commit | 54b4a77c00fd845ee3a3fae1aaf185157146d2c1 (patch) | |
tree | 5fe3ff156d008872492f6376b6ee76d3127cec50 | |
parent | c03234512784b78a95b5aa9ca445d05836b9d51a (diff) | |
download | matchbox-panel-2-54b4a77c00fd845ee3a3fae1aaf185157146d2c1.tar.gz matchbox-panel-2-54b4a77c00fd845ee3a3fae1aaf185157146d2c1.tar.bz2 matchbox-panel-2-54b4a77c00fd845ee3a3fae1aaf185157146d2c1.zip |
build: check for x11 and gdk-x11 explicitly
Modern toolchains will ignore implicit linkage, so not linking to these will
cause link errors.
Original patch by Xin Ouyang <Xin.Ouyang@windriver.com>, edited when merging.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1cac4c4..48fd303 100644 --- a/configure.ac +++ b/configure.ac @@ -17,6 +17,8 @@ GNOME_COMPILE_WARNINGS # base deps PKG_CHECK_MODULES(MATCHBOX_PANEL, glib-2.0 + x11 + gdk-x11-2.0 gtk+-2.0 >= 2.18 gmodule-export-2.0) |