diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-18 10:38:46 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-18 22:09:05 +0100 |
commit | 50bdab9025f3bcacf4f29e928ed2cba892dfc039 (patch) | |
tree | c61ad1fd41a3308631290dfe86289fa38b50d934 /package/matchbox/matchbox-desktop/matchbox-desktop.mk | |
parent | d0a4e72f4a58385e2992d2956d3b8bd14f3c6db9 (diff) | |
download | buildroot-novena-50bdab9025f3bcacf4f29e928ed2cba892dfc039.tar.gz buildroot-novena-50bdab9025f3bcacf4f29e928ed2cba892dfc039.zip |
matchbox-desktop: fix link issue against libdl
matchbox-desktop uses dlopen(), so it needs to link against libdl. The
configure.ac and Makefile.am have the necessary provisions to do so,
but the included configure script does not replace LIBADD_DL in
src/Makefile.am as it should.
Therefore, we force the autoreconf of the package, which solves the
problem.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/matchbox/matchbox-desktop/matchbox-desktop.mk')
-rw-r--r-- | package/matchbox/matchbox-desktop/matchbox-desktop.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/matchbox/matchbox-desktop/matchbox-desktop.mk b/package/matchbox/matchbox-desktop/matchbox-desktop.mk index d180d1df6..f8e854c95 100644 --- a/package/matchbox/matchbox-desktop/matchbox-desktop.mk +++ b/package/matchbox/matchbox-desktop/matchbox-desktop.mk @@ -13,6 +13,11 @@ MATCHBOX_DESKTOP_LICENSE_FILES = COPYING MATCHBOX_DESKTOP_DEPENDENCIES = matchbox-lib MATCHBOX_DESKTOP_CONF_OPT = --enable-expat +# The bundled configure script does not properly replace LIBADD_DL, so +# we force an autoreconf even if we don't have any patches touching +# configure.ac/Makefile.am. +MATCHBOX_DESKTOP_AUTORECONF = YES + ############################################################# ifeq ($(BR2_PACKAGE_STARTUP_NOTIFICATION),y) |