Elementary: Do not build modules if dlopen is not available on the system

SVN revision: 64094
This commit is contained in:
Youness Alaoui 2011-10-15 09:48:50 +00:00
parent 556929b900
commit 804388b012
2 changed files with 8 additions and 1 deletions

View File

@ -181,6 +181,7 @@ dnl managed by evil
;;
esac
AM_CONDITIONAL([BUILD_RUN], [test "x$have_socket" = "xyes"])
AM_CONDITIONAL([BUILD_MODULES], [test "x$have_dlopen" = "xyes"])
m4_ifdef([v_mic],
[

View File

@ -1,4 +1,10 @@
AUTOMAKE_OPTIONS = 1.4 foreign
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = lib bin modules edje_externals examples
SUBDIRS = lib bin
if BUILD_MODULES
SUBDIRS += modules edje_externals
endif
SUBDIRS += examples