diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-08-01 19:04:42 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-08-01 19:11:39 +0900 |
commit | 1d0b500fa8ce93ac6cd9211abd35ea8972be74b2 (patch) | |
tree | 42aef01c896b1084f91a42b051b82741112d5b9b /src/Makefile_Edje.am | |
parent | d27f5fcab78cabe880e9b3f2a62ac633d97ce381 (diff) | |
download | efl-1d0b500fa8ce93ac6cd9211abd35ea8972be74b2.tar.gz |
edje - reduce memory footrpint by dlopening ephysics on demand
this saves about another 80Kb or so in dirty pages by only loading
ephysics when needed. This removed ephysics and bullet library dirty
pages from the process space. this is another patch to address T4227.
@fix
Diffstat (limited to 'src/Makefile_Edje.am')
-rw-r--r-- | src/Makefile_Edje.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am index f6dd2f7cfb..989df6d0d7 100644 --- a/src/Makefile_Edje.am +++ b/src/Makefile_Edje.am @@ -51,6 +51,7 @@ EDJE_COMMON_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ -DPACKAGE_DATA_DIR=\"$(datadir)/edje\" \ -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ -DPACKAGE_SRC_DIR=\"$(abs_top_srcdir)\" \ +@EDJE_LUA_CFLAGS@ \ @EDJE_CFLAGS@ installed_edjemainheadersdir = $(includedir)/edje-@VMAJ@ @@ -97,7 +98,7 @@ lib/edje/edje_containers.c lib_edje_libedje_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EDJE_COMMON_CPPFLAGS) -lib_edje_libedje_la_LIBADD = @EDJE_LIBS@ +lib_edje_libedje_la_LIBADD = @EDJE_LIBS@ @EDJE_LUA_LIBS@ lib_edje_libedje_la_DEPENDENCIES = @EDJE_INTERNAL_LIBS@ lib_edje_libedje_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |