diff options
author | Tom Hacohen <tom@stosb.com> | 2012-08-23 11:32:38 +0000 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2012-08-23 11:32:38 +0000 |
commit | a1687ca4b96161b24bf72a35f7614f4a9e2c7c4e (patch) | |
tree | 1c6d11f15eef6c3882b14dee2946b59126880585 /legacy | |
parent | b47d9a1ce4fc87ff9154d736d1375d08ad8ba445 (diff) |
Evas: Started using EVAS_GENERAL_CFLAGS/LIBS 2 vars to rule them all.
Instead of going all over the place and adding cflags to many different
Makefiles, now you just need to update these 2 vars.
SVN revision: 75619
Diffstat (limited to '')
67 files changed, 141 insertions, 134 deletions
diff --git a/legacy/evas/configure.ac b/legacy/evas/configure.ac index 98ab4b53d4..389a6bfea2 100644 --- a/legacy/evas/configure.ac +++ b/legacy/evas/configure.ac | |||
@@ -1790,6 +1790,13 @@ fi | |||
1790 | AC_SUBST(EVAS_CFLAGS) | 1790 | AC_SUBST(EVAS_CFLAGS) |
1791 | AC_SUBST(EVAS_LIBS) | 1791 | AC_SUBST(EVAS_LIBS) |
1792 | 1792 | ||
1793 | # General CFLAGS | ||
1794 | |||
1795 | EVAS_GENERAL_CFLAGS="${EINA_CFLAGS}" | ||
1796 | EVAS_GENERAL_LIBS="${EINA_LIBS}" | ||
1797 | AC_SUBST(EVAS_GENERAL_CFLAGS) | ||
1798 | AC_SUBST(EVAS_GENERAL_LIBS) | ||
1799 | |||
1793 | ##################################################################### | 1800 | ##################################################################### |
1794 | ## Fill in flags | 1801 | ## Fill in flags |
1795 | 1802 | ||
diff --git a/legacy/evas/src/bin/Makefile.am b/legacy/evas/src/bin/Makefile.am index 6cddccd64d..84028cee96 100644 --- a/legacy/evas/src/bin/Makefile.am +++ b/legacy/evas/src/bin/Makefile.am | |||
@@ -10,7 +10,7 @@ AM_CPPFLAGS = \ | |||
10 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 10 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
11 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 11 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
12 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ | 12 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
13 | @EINA_CFLAGS@ \ | 13 | @EVAS_GENERAL_CFLAGS@ \ |
14 | @FREETYPE_CFLAGS@ \ | 14 | @FREETYPE_CFLAGS@ \ |
15 | @FRIBIDI_CFLAGS@ \ | 15 | @FRIBIDI_CFLAGS@ \ |
16 | @EET_CFLAGS@ \ | 16 | @EET_CFLAGS@ \ |
@@ -26,7 +26,7 @@ evas_cserve_main.c | |||
26 | evas_cserve_LDADD = \ | 26 | evas_cserve_LDADD = \ |
27 | $(top_builddir)/src/lib/libevas.la \ | 27 | $(top_builddir)/src/lib/libevas.la \ |
28 | @pthread_libs@ \ | 28 | @pthread_libs@ \ |
29 | @EINA_LIBS@ | 29 | @EVAS_GENERAL_LIBS@ |
30 | 30 | ||
31 | evas_cserve_tool_LDFLAGS = | 31 | evas_cserve_tool_LDFLAGS = |
32 | 32 | ||
@@ -36,7 +36,7 @@ evas_cserve_tool.c | |||
36 | evas_cserve_tool_LDADD = \ | 36 | evas_cserve_tool_LDADD = \ |
37 | $(top_builddir)/src/lib/libevas.la \ | 37 | $(top_builddir)/src/lib/libevas.la \ |
38 | @pthread_libs@ \ | 38 | @pthread_libs@ \ |
39 | @EINA_LIBS@ | 39 | @EVAS_GENERAL_LIBS@ |
40 | 40 | ||
41 | endif | 41 | endif |
42 | 42 | ||
@@ -56,7 +56,7 @@ AM_CPPFLAGS = \ | |||
56 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 56 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
57 | -DPACKAGE_LIBEXEC_DIR=\"$(libexecdir)\" \ | 57 | -DPACKAGE_LIBEXEC_DIR=\"$(libexecdir)\" \ |
58 | @FREETYPE_CFLAGS@ \ | 58 | @FREETYPE_CFLAGS@ \ |
59 | @EINA_CFLAGS@ \ | 59 | @EVAS_GENERAL_CFLAGS@ \ |
60 | @EET_CFLAGS@ | 60 | @EET_CFLAGS@ |
61 | 61 | ||
62 | evas_cserve2_SOURCES = \ | 62 | evas_cserve2_SOURCES = \ |
@@ -75,7 +75,7 @@ libevas_cserve2_utils_la = $(top_builddir)/src/lib/cserve2/libevas_cserve2_utils | |||
75 | 75 | ||
76 | evas_cserve2_LDADD = \ | 76 | evas_cserve2_LDADD = \ |
77 | @FREETYPE_LIBS@ \ | 77 | @FREETYPE_LIBS@ \ |
78 | @EINA_LIBS@ \ | 78 | @EVAS_GENERAL_LIBS@ \ |
79 | @EFL_SHM_OPEN_LIBS@ \ | 79 | @EFL_SHM_OPEN_LIBS@ \ |
80 | @EET_LIBS@ \ | 80 | @EET_LIBS@ \ |
81 | $(libevas_cserve2_utils_la) | 81 | $(libevas_cserve2_utils_la) |
@@ -90,10 +90,10 @@ evas_cserve2_debug_SOURCES = \ | |||
90 | evas_cserve2_debug.c | 90 | evas_cserve2_debug.c |
91 | 91 | ||
92 | evas_cserve2_usage_LDADD = \ | 92 | evas_cserve2_usage_LDADD = \ |
93 | @EINA_LIBS@ | 93 | @EVAS_GENERAL_LIBS@ |
94 | 94 | ||
95 | evas_cserve2_debug_LDADD = \ | 95 | evas_cserve2_debug_LDADD = \ |
96 | @EINA_LIBS@ | 96 | @EVAS_GENERAL_LIBS@ |
97 | 97 | ||
98 | evas_cserve2_slave_SOURCES = \ | 98 | evas_cserve2_slave_SOURCES = \ |
99 | evas_cserve2_slave.c \ | 99 | evas_cserve2_slave.c \ |
@@ -102,14 +102,14 @@ evas_cserve2_utils.c | |||
102 | evas_cserve2_slave_LDFLAGS = -export-dynamic | 102 | evas_cserve2_slave_LDFLAGS = -export-dynamic |
103 | 103 | ||
104 | evas_cserve2_slave_LDADD = \ | 104 | evas_cserve2_slave_LDADD = \ |
105 | @EINA_LIBS@ \ | 105 | @EVAS_GENERAL_LIBS@ \ |
106 | @EFL_SHM_OPEN_LIBS@ | 106 | @EFL_SHM_OPEN_LIBS@ |
107 | 107 | ||
108 | dummy_slave_SOURCES = \ | 108 | dummy_slave_SOURCES = \ |
109 | dummy_slave.c | 109 | dummy_slave.c |
110 | 110 | ||
111 | dummy_slave_LDADD = \ | 111 | dummy_slave_LDADD = \ |
112 | @EINA_LIBS@ \ | 112 | @EVAS_GENERAL_LIBS@ \ |
113 | @EFL_SHM_OPEN_LIBS@ | 113 | @EFL_SHM_OPEN_LIBS@ |
114 | 114 | ||
115 | endif | 115 | endif |
diff --git a/legacy/evas/src/bin/loaders/bmp/Makefile.am b/legacy/evas/src/bin/loaders/bmp/Makefile.am index 113c19b94c..faba4a514f 100644 --- a/legacy/evas/src/bin/loaders/bmp/Makefile.am +++ b/legacy/evas/src/bin/loaders/bmp/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @EVIL_CFLAGS@ | 11 | @EVIL_CFLAGS@ |
12 | 12 | ||
13 | if BUILD_LOADER_BMP | 13 | if BUILD_LOADER_BMP |
@@ -18,7 +18,7 @@ pkg_LTLIBRARIES = module.la | |||
18 | 18 | ||
19 | module_la_SOURCES = evas_image_load_bmp.c | 19 | module_la_SOURCES = evas_image_load_bmp.c |
20 | 20 | ||
21 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ -lm | 21 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ -lm |
22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
23 | module_la_LIBTOOLFLAGS = --tag=disable-static | 23 | module_la_LIBTOOLFLAGS = --tag=disable-static |
24 | 24 | ||
diff --git a/legacy/evas/src/bin/loaders/eet/Makefile.am b/legacy/evas/src/bin/loaders/eet/Makefile.am index b6aedfbb23..a164bcda1c 100644 --- a/legacy/evas/src/bin/loaders/eet/Makefile.am +++ b/legacy/evas/src/bin/loaders/eet/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @evas_image_loader_eet_cflags@ \ | 10 | @evas_image_loader_eet_cflags@ \ |
11 | @EINA_CFLAGS@ | 11 | @EVAS_GENERAL_CFLAGS@ |
12 | 12 | ||
13 | 13 | ||
14 | if BUILD_LOADER_EET | 14 | if BUILD_LOADER_EET |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_eet.c | 20 | module_la_SOURCES = evas_image_load_eet.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_eet_libs@ | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_eet_libs@ |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/bin/loaders/ico/Makefile.am b/legacy/evas/src/bin/loaders/ico/Makefile.am index 10d0d4e778..9c045e0010 100644 --- a/legacy/evas/src/bin/loaders/ico/Makefile.am +++ b/legacy/evas/src/bin/loaders/ico/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @EVIL_CFLAGS@ | 11 | @EVIL_CFLAGS@ |
12 | 12 | ||
13 | if BUILD_LOADER_ICO | 13 | if BUILD_LOADER_ICO |
@@ -18,7 +18,7 @@ pkg_LTLIBRARIES = module.la | |||
18 | 18 | ||
19 | module_la_SOURCES = evas_image_load_ico.c | 19 | module_la_SOURCES = evas_image_load_ico.c |
20 | 20 | ||
21 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ | 21 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ |
22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
23 | module_la_LIBTOOLFLAGS = --tag=disable-static | 23 | module_la_LIBTOOLFLAGS = --tag=disable-static |
24 | 24 | ||
diff --git a/legacy/evas/src/bin/loaders/jpeg/Makefile.am b/legacy/evas/src/bin/loaders/jpeg/Makefile.am index 5bb093fd23..03e3928a33 100644 --- a/legacy/evas/src/bin/loaders/jpeg/Makefile.am +++ b/legacy/evas/src/bin/loaders/jpeg/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @evas_image_loader_jpeg_cflags@ \ | 11 | @evas_image_loader_jpeg_cflags@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_jpeg.c | 20 | module_la_SOURCES = evas_image_load_jpeg.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ @evas_image_loader_jpeg_libs@ | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ @evas_image_loader_jpeg_libs@ |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/bin/loaders/pmaps/Makefile.am b/legacy/evas/src/bin/loaders/pmaps/Makefile.am index 16410410ce..07480b98d6 100644 --- a/legacy/evas/src/bin/loaders/pmaps/Makefile.am +++ b/legacy/evas/src/bin/loaders/pmaps/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @evas_image_loader_pmaps_cflags@ \ | 11 | @evas_image_loader_pmaps_cflags@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_pmaps.c | 20 | module_la_SOURCES = evas_image_load_pmaps.c |
21 | 21 | ||
22 | module_la_LIBADD = @evas_image_loader_pmaps_libs@ @EINA_LIBS@ @EVIL_LIBS@ | 22 | module_la_LIBADD = @evas_image_loader_pmaps_libs@ @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/bin/loaders/png/Makefile.am b/legacy/evas/src/bin/loaders/png/Makefile.am index e99660c16c..554f44d1c7 100644 --- a/legacy/evas/src/bin/loaders/png/Makefile.am +++ b/legacy/evas/src/bin/loaders/png/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @evas_image_loader_png_cflags@ \ | 11 | @evas_image_loader_png_cflags@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_png.c | 20 | module_la_SOURCES = evas_image_load_png.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_png_libs@ @EVIL_LIBS@ | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_png_libs@ @EVIL_LIBS@ |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/bin/loaders/psd/Makefile.am b/legacy/evas/src/bin/loaders/psd/Makefile.am index 55a3ab2f66..2b09650852 100644 --- a/legacy/evas/src/bin/loaders/psd/Makefile.am +++ b/legacy/evas/src/bin/loaders/psd/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @EVIL_CFLAGS@ | 11 | @EVIL_CFLAGS@ |
12 | 12 | ||
13 | if BUILD_LOADER_PSD | 13 | if BUILD_LOADER_PSD |
@@ -18,7 +18,7 @@ pkg_LTLIBRARIES = module.la | |||
18 | 18 | ||
19 | module_la_SOURCES = evas_image_load_psd.c | 19 | module_la_SOURCES = evas_image_load_psd.c |
20 | 20 | ||
21 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ | 21 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ |
22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
23 | module_la_LIBTOOLFLAGS = --tag=disable-static | 23 | module_la_LIBTOOLFLAGS = --tag=disable-static |
24 | 24 | ||
diff --git a/legacy/evas/src/bin/loaders/tga/Makefile.am b/legacy/evas/src/bin/loaders/tga/Makefile.am index 7b813caea3..b861412628 100644 --- a/legacy/evas/src/bin/loaders/tga/Makefile.am +++ b/legacy/evas/src/bin/loaders/tga/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @EVIL_CFLAGS@ | 11 | @EVIL_CFLAGS@ |
12 | 12 | ||
13 | if BUILD_LOADER_TGA | 13 | if BUILD_LOADER_TGA |
@@ -18,7 +18,7 @@ pkg_LTLIBRARIES = module.la | |||
18 | 18 | ||
19 | module_la_SOURCES = evas_image_load_tga.c | 19 | module_la_SOURCES = evas_image_load_tga.c |
20 | 20 | ||
21 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ | 21 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ |
22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
23 | module_la_LIBTOOLFLAGS = --tag=disable-static | 23 | module_la_LIBTOOLFLAGS = --tag=disable-static |
24 | 24 | ||
diff --git a/legacy/evas/src/bin/loaders/tiff/Makefile.am b/legacy/evas/src/bin/loaders/tiff/Makefile.am index 19458ebc88..8c33b61b9b 100644 --- a/legacy/evas/src/bin/loaders/tiff/Makefile.am +++ b/legacy/evas/src/bin/loaders/tiff/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @evas_image_loader_tiff_cflags@ \ | 11 | @evas_image_loader_tiff_cflags@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_tiff.c | 20 | module_la_SOURCES = evas_image_load_tiff.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ @evas_image_loader_tiff_libs@ | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ @evas_image_loader_tiff_libs@ |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/bin/loaders/wbmp/Makefile.am b/legacy/evas/src/bin/loaders/wbmp/Makefile.am index b96e17919a..bed8c29ce6 100644 --- a/legacy/evas/src/bin/loaders/wbmp/Makefile.am +++ b/legacy/evas/src/bin/loaders/wbmp/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @EVIL_CFLAGS@ | 11 | @EVIL_CFLAGS@ |
12 | 12 | ||
13 | if BUILD_LOADER_WBMP | 13 | if BUILD_LOADER_WBMP |
@@ -18,7 +18,7 @@ pkg_LTLIBRARIES = module.la | |||
18 | 18 | ||
19 | module_la_SOURCES = evas_image_load_wbmp.c | 19 | module_la_SOURCES = evas_image_load_wbmp.c |
20 | 20 | ||
21 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ | 21 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ |
22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 22 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
23 | module_la_LIBTOOLFLAGS = --tag=disable-static | 23 | module_la_LIBTOOLFLAGS = --tag=disable-static |
24 | 24 | ||
diff --git a/legacy/evas/src/bin/loaders/xpm/Makefile.am b/legacy/evas/src/bin/loaders/xpm/Makefile.am index 8edae6c426..c8117d8146 100644 --- a/legacy/evas/src/bin/loaders/xpm/Makefile.am +++ b/legacy/evas/src/bin/loaders/xpm/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/bin \ | 9 | -I$(top_srcdir)/src/bin \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @evas_image_loader_xpm_cflags@ \ | 11 | @evas_image_loader_xpm_cflags@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_xpm.c | 20 | module_la_SOURCES = evas_image_load_xpm.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ @evas_image_loader_xpm_libs@ | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ @evas_image_loader_xpm_libs@ |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/examples/Makefile.am b/legacy/evas/src/examples/Makefile.am index e03ff9e751..276ac9fe65 100644 --- a/legacy/evas/src/examples/Makefile.am +++ b/legacy/evas/src/examples/Makefile.am | |||
@@ -18,7 +18,7 @@ AM_CPPFLAGS = \ | |||
18 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 18 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
19 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ | 19 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
20 | -DPACKAGE_EXAMPLES_DIR=\"$(datadir)/$(PACKAGE)/examples\" \ | 20 | -DPACKAGE_EXAMPLES_DIR=\"$(datadir)/$(PACKAGE)/examples\" \ |
21 | @EINA_CFLAGS@ \ | 21 | @EVAS_GENERAL_CFLAGS@ \ |
22 | @FREETYPE_CFLAGS@ \ | 22 | @FREETYPE_CFLAGS@ \ |
23 | @PIXMAN_CFLAGS@ \ | 23 | @PIXMAN_CFLAGS@ \ |
24 | @FRIBIDI_CFLAGS@ \ | 24 | @FRIBIDI_CFLAGS@ \ |
@@ -85,7 +85,7 @@ evas_smart_interface_LDADD = $(top_builddir)/src/lib/libevas.la @ECORE_EVAS_LIBS | |||
85 | 85 | ||
86 | examples_PROGRAMS += evas_box | 86 | examples_PROGRAMS += evas_box |
87 | evas_box_SOURCES = evas-box.c | 87 | evas_box_SOURCES = evas-box.c |
88 | evas_box_LDADD = $(top_builddir)/src/lib/libevas.la @ECORE_EVAS_LIBS@ @EINA_LIBS@ | 88 | evas_box_LDADD = $(top_builddir)/src/lib/libevas.la @ECORE_EVAS_LIBS@ @EVAS_GENERAL_LIBS@ |
89 | 89 | ||
90 | #the ones using ecore_evas and edje follow | 90 | #the ones using ecore_evas and edje follow |
91 | AM_CPPFLAGS += @EDJE_CFLAGS@ | 91 | AM_CPPFLAGS += @EDJE_CFLAGS@ |
diff --git a/legacy/evas/src/lib/Makefile.am b/legacy/evas/src/lib/Makefile.am index 00511f38d8..5daf8ec594 100644 --- a/legacy/evas/src/lib/Makefile.am +++ b/legacy/evas/src/lib/Makefile.am | |||
@@ -185,7 +185,7 @@ AM_CPPFLAGS = \ | |||
185 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 185 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
186 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 186 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
187 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ | 187 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
188 | @EINA_CFLAGS@ \ | 188 | @EVAS_GENERAL_CFLAGS@ \ |
189 | @FREETYPE_CFLAGS@ \ | 189 | @FREETYPE_CFLAGS@ \ |
190 | @FRIBIDI_CFLAGS@ \ | 190 | @FRIBIDI_CFLAGS@ \ |
191 | @HARFBUZZ_CFLAGS@ \ | 191 | @HARFBUZZ_CFLAGS@ \ |
@@ -226,7 +226,7 @@ engines/common/libevas_engine_common.la \ | |||
226 | @EET_LIBS@ \ | 226 | @EET_LIBS@ \ |
227 | @FONTCONFIG_LIBS@ \ | 227 | @FONTCONFIG_LIBS@ \ |
228 | @pthread_libs@ \ | 228 | @pthread_libs@ \ |
229 | @EINA_LIBS@ \ | 229 | @EVAS_GENERAL_LIBS@ \ |
230 | $(EVAS_STATIC_MODULE) \ | 230 | $(EVAS_STATIC_MODULE) \ |
231 | $(EVAS_STATIC_LIBADD) \ | 231 | $(EVAS_STATIC_LIBADD) \ |
232 | @PIXMAN_LIBS@ \ | 232 | @PIXMAN_LIBS@ \ |
diff --git a/legacy/evas/src/lib/cache/Makefile.am b/legacy/evas/src/lib/cache/Makefile.am index feb5c940c2..d25932f2bc 100644 --- a/legacy/evas/src/lib/cache/Makefile.am +++ b/legacy/evas/src/lib/cache/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = -I. -I$(top_srcdir)/src/lib -I$(top_srcdir)/src/lib/include \ | |||
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @EINA_CFLAGS@ | 12 | @EVAS_GENERAL_CFLAGS@ |
13 | 13 | ||
14 | noinst_LTLIBRARIES = libevas_cache.la | 14 | noinst_LTLIBRARIES = libevas_cache.la |
15 | libevas_cache_la_SOURCES = \ | 15 | libevas_cache_la_SOURCES = \ |
diff --git a/legacy/evas/src/lib/cache2/Makefile.am b/legacy/evas/src/lib/cache2/Makefile.am index 788b592e18..2eaf0b9cd1 100644 --- a/legacy/evas/src/lib/cache2/Makefile.am +++ b/legacy/evas/src/lib/cache2/Makefile.am | |||
@@ -11,7 +11,7 @@ AM_CPPFLAGS = -I. \ | |||
11 | @EVIL_CFLAGS@ \ | 11 | @EVIL_CFLAGS@ \ |
12 | @FREETYPE_CFLAGS@ \ | 12 | @FREETYPE_CFLAGS@ \ |
13 | @PIXMAN_CFLAGS@ \ | 13 | @PIXMAN_CFLAGS@ \ |
14 | @EINA_CFLAGS@ \ | 14 | @EVAS_GENERAL_CFLAGS@ \ |
15 | @PIXMAN_CFLAGS@ \ | 15 | @PIXMAN_CFLAGS@ \ |
16 | @FRIBIDI_CFLAGS@ | 16 | @FRIBIDI_CFLAGS@ |
17 | 17 | ||
diff --git a/legacy/evas/src/lib/canvas/Makefile.am b/legacy/evas/src/lib/canvas/Makefile.am index d0c8e120c3..8564d66cbe 100644 --- a/legacy/evas/src/lib/canvas/Makefile.am +++ b/legacy/evas/src/lib/canvas/Makefile.am | |||
@@ -13,7 +13,7 @@ AM_CPPFLAGS = \ | |||
13 | @EET_CFLAGS@ \ | 13 | @EET_CFLAGS@ \ |
14 | @FONTCONFIG_CFLAGS@ \ | 14 | @FONTCONFIG_CFLAGS@ \ |
15 | @EVAS_CFLAGS@ \ | 15 | @EVAS_CFLAGS@ \ |
16 | @EINA_CFLAGS@ \ | 16 | @EVAS_GENERAL_CFLAGS@ \ |
17 | @EVIL_CFLAGS@ \ | 17 | @EVIL_CFLAGS@ \ |
18 | @PIXMAN_CFLAGS@ \ | 18 | @PIXMAN_CFLAGS@ \ |
19 | @FRIBIDI_CFLAGS@ | 19 | @FRIBIDI_CFLAGS@ |
diff --git a/legacy/evas/src/lib/cserve/Makefile.am b/legacy/evas/src/lib/cserve/Makefile.am index f2bf1e4bfe..8ed10b80ea 100644 --- a/legacy/evas/src/lib/cserve/Makefile.am +++ b/legacy/evas/src/lib/cserve/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 8 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
9 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 9 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
10 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ | 10 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @FREETYPE_CFLAGS@ \ | 12 | @FREETYPE_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @EET_CFLAGS@ \ | 14 | @EET_CFLAGS@ \ |
@@ -29,4 +29,4 @@ evas_cs_server.c \ | |||
29 | evas_cs_client.c \ | 29 | evas_cs_client.c \ |
30 | evas_cs_mem.c | 30 | evas_cs_mem.c |
31 | 31 | ||
32 | libevas_cserve_la_LIBADD = @EINA_LIBS@ @EFL_SHM_OPEN_LIBS@ | 32 | libevas_cserve_la_LIBADD = @EVAS_GENERAL_LIBS@ @EFL_SHM_OPEN_LIBS@ |
diff --git a/legacy/evas/src/lib/cserve2/Makefile.am b/legacy/evas/src/lib/cserve2/Makefile.am index 39d7048a49..2aa0c5ccac 100644 --- a/legacy/evas/src/lib/cserve2/Makefile.am +++ b/legacy/evas/src/lib/cserve2/Makefile.am | |||
@@ -4,7 +4,7 @@ AM_CPPFLAGS = \ | |||
4 | -I. \ | 4 | -I. \ |
5 | -I$(top_srcdir)/src/lib \ | 5 | -I$(top_srcdir)/src/lib \ |
6 | -I$(top_srcdir)/src/lib/include \ | 6 | -I$(top_srcdir)/src/lib/include \ |
7 | @EINA_CFLAGS@ \ | 7 | @EVAS_GENERAL_CFLAGS@ \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @FRIBIDI_CFLAGS@ \ | 9 | @FRIBIDI_CFLAGS@ \ |
10 | @EET_CFLAGS@ \ | 10 | @EET_CFLAGS@ \ |
@@ -26,6 +26,6 @@ libevas_cserve2_utils_la_SOURCES = \ | |||
26 | evas_cs2_utils.h \ | 26 | evas_cs2_utils.h \ |
27 | evas_cs2_utils.c | 27 | evas_cs2_utils.c |
28 | 28 | ||
29 | libevas_cserve2_la_LIBADD = @EINA_LIBS@ libevas_cserve2_utils.la | 29 | libevas_cserve2_la_LIBADD = @EVAS_GENERAL_LIBS@ libevas_cserve2_utils.la |
30 | 30 | ||
31 | endif | 31 | endif |
diff --git a/legacy/evas/src/lib/engines/common/Makefile.am b/legacy/evas/src/lib/engines/common/Makefile.am index 1938e6c29f..a5ac2a6dbb 100644 --- a/legacy/evas/src/lib/engines/common/Makefile.am +++ b/legacy/evas/src/lib/engines/common/Makefile.am | |||
@@ -14,7 +14,7 @@ AM_CPPFLAGS = -I. \ | |||
14 | @FREETYPE_CFLAGS@ @VALGRIND_CFLAGS@ \ | 14 | @FREETYPE_CFLAGS@ @VALGRIND_CFLAGS@ \ |
15 | @PIXMAN_CFLAGS@ \ | 15 | @PIXMAN_CFLAGS@ \ |
16 | @EET_CFLAGS@ @pthread_cflags@ \ | 16 | @EET_CFLAGS@ @pthread_cflags@ \ |
17 | @EINA_CFLAGS@ \ | 17 | @EVAS_GENERAL_CFLAGS@ \ |
18 | @FRIBIDI_CFLAGS@ @HARFBUZZ_CFLAGS@ \ | 18 | @FRIBIDI_CFLAGS@ @HARFBUZZ_CFLAGS@ \ |
19 | @PIXMAN_CFLAGS@ | 19 | @PIXMAN_CFLAGS@ |
20 | 20 | ||
diff --git a/legacy/evas/src/lib/engines/common/evas_op_blend/Makefile.am b/legacy/evas/src/lib/engines/common/evas_op_blend/Makefile.am index 77435c4f1e..d7b5861475 100644 --- a/legacy/evas/src/lib/engines/common/evas_op_blend/Makefile.am +++ b/legacy/evas/src/lib/engines/common/evas_op_blend/Makefile.am | |||
@@ -40,7 +40,7 @@ libevas_engine_common_op_blend_master_sse3_la_CFLAGS = \ | |||
40 | @FREETYPE_CFLAGS@ @VALGRIND_CFLAGS@ \ | 40 | @FREETYPE_CFLAGS@ @VALGRIND_CFLAGS@ \ |
41 | @PIXMAN_CFLAGS@ \ | 41 | @PIXMAN_CFLAGS@ \ |
42 | @EET_CFLAGS@ @pthread_cflags@ \ | 42 | @EET_CFLAGS@ @pthread_cflags@ \ |
43 | @EINA_CFLAGS@ \ | 43 | @EVAS_GENERAL_CFLAGS@ \ |
44 | @FRIBIDI_CFLAGS@ @HARFBUZZ_CFLAGS@ \ | 44 | @FRIBIDI_CFLAGS@ @HARFBUZZ_CFLAGS@ \ |
45 | @PIXMAN_CFLAGS@ \ | 45 | @PIXMAN_CFLAGS@ \ |
46 | @EVAS_SSE3_CFLAGS@ | 46 | @EVAS_SSE3_CFLAGS@ |
diff --git a/legacy/evas/src/lib/engines/common_16/Makefile.am b/legacy/evas/src/lib/engines/common_16/Makefile.am index ef2ab305e4..cfa1347a27 100644 --- a/legacy/evas/src/lib/engines/common_16/Makefile.am +++ b/legacy/evas/src/lib/engines/common_16/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @VALGRIND_CFLAGS@ \ | 10 | @VALGRIND_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EET_CFLAGS@ \ | 12 | @EET_CFLAGS@ \ |
13 | @pthread_cflags@ | 13 | @pthread_cflags@ |
14 | 14 | ||
diff --git a/legacy/evas/src/lib/engines/common_8/Makefile.am b/legacy/evas/src/lib/engines/common_8/Makefile.am index 58a1b1f8e2..95a48ae642 100644 --- a/legacy/evas/src/lib/engines/common_8/Makefile.am +++ b/legacy/evas/src/lib/engines/common_8/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @VALGRIND_CFLAGS@ \ | 10 | @VALGRIND_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EET_CFLAGS@ \ | 12 | @EET_CFLAGS@ \ |
13 | @pthread_cflags@ | 13 | @pthread_cflags@ |
14 | 14 | ||
diff --git a/legacy/evas/src/lib/file/Makefile.am b/legacy/evas/src/lib/file/Makefile.am index c1c8b66b67..97970f4fdb 100644 --- a/legacy/evas/src/lib/file/Makefile.am +++ b/legacy/evas/src/lib/file/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 9 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
10 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ | 10 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
11 | @FREETYPE_CFLAGS@ \ | 11 | @FREETYPE_CFLAGS@ \ |
12 | @EINA_CFLAGS@ \ | 12 | @EVAS_GENERAL_CFLAGS@ \ |
13 | @EVIL_CFLAGS@ \ | 13 | @EVIL_CFLAGS@ \ |
14 | @FRIBIDI_CFLAGS@ \ | 14 | @FRIBIDI_CFLAGS@ \ |
15 | @PIXMAN_CFLAGS@ | 15 | @PIXMAN_CFLAGS@ |
@@ -21,5 +21,5 @@ evas_module.c \ | |||
21 | evas_module.h \ | 21 | evas_module.h \ |
22 | evas_path.h | 22 | evas_path.h |
23 | 23 | ||
24 | libevas_file_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ | 24 | libevas_file_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/engines/buffer/Makefile.am b/legacy/evas/src/modules/engines/buffer/Makefile.am index 27f491266a..de9c4012bf 100644 --- a/legacy/evas/src/modules/engines/buffer/Makefile.am +++ b/legacy/evas/src/modules/engines/buffer/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/modules/engines \ | 9 | -I$(top_srcdir)/src/modules/engines \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FREETYPE_CFLAGS@ \ | 11 | @FREETYPE_CFLAGS@ \ |
12 | @PIXMAN_CFLAGS@ \ | 12 | @PIXMAN_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ | 13 | @FRIBIDI_CFLAGS@ |
@@ -28,7 +28,7 @@ pkgdir = $(libdir)/evas/modules/engines/buffer/$(MODULE_ARCH) | |||
28 | pkg_LTLIBRARIES = module.la | 28 | pkg_LTLIBRARIES = module.la |
29 | 29 | ||
30 | module_la_SOURCES = $(BUFFER_SOURCES) | 30 | module_la_SOURCES = $(BUFFER_SOURCES) |
31 | module_la_LIBADD = $(top_builddir)/src/lib/libevas.la @EINA_LIBS@ | 31 | module_la_LIBADD = $(top_builddir)/src/lib/libevas.la @EVAS_GENERAL_LIBS@ |
32 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 32 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
33 | module_la_LIBTOOLFLAGS = --tag=disable-static | 33 | module_la_LIBTOOLFLAGS = --tag=disable-static |
34 | 34 | ||
diff --git a/legacy/evas/src/modules/engines/direct3d/Makefile.am b/legacy/evas/src/modules/engines/direct3d/Makefile.am index 1ff43a7af8..e8f02928db 100644 --- a/legacy/evas/src/modules/engines/direct3d/Makefile.am +++ b/legacy/evas/src/modules/engines/direct3d/Makefile.am | |||
@@ -6,7 +6,7 @@ AM_CPPFLAGS = \ | |||
6 | -I$(top_srcdir)/src/lib \ | 6 | -I$(top_srcdir)/src/lib \ |
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | @EINA_CFLAGS@ \ | 9 | @EVAS_GENERAL_CFLAGS@ \ |
10 | @FREETYPE_CFLAGS@ \ | 10 | @FREETYPE_CFLAGS@ \ |
11 | @PIXMAN_CFLAGS@ \ | 11 | @PIXMAN_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
@@ -41,7 +41,7 @@ pkgdir = $(libdir)/evas/modules/engines/direct3d/$(MODULE_ARCH) | |||
41 | pkg_LTLIBRARIES = module.la | 41 | pkg_LTLIBRARIES = module.la |
42 | module_la_SOURCES = $(DIRECT3D_SOURCES) | 42 | module_la_SOURCES = $(DIRECT3D_SOURCES) |
43 | module_la_CXXFLAGS = -fno-exceptions | 43 | module_la_CXXFLAGS = -fno-exceptions |
44 | module_la_LIBADD = $(top_builddir)/src/lib/libevas.la $(DIRECT3D_LIBADD) @EINA_LIBS@ | 44 | module_la_LIBADD = $(top_builddir)/src/lib/libevas.la $(DIRECT3D_LIBADD) @EVAS_GENERAL_LIBS@ |
45 | module_la_LDFLAGS = @lt_enable_auto_import@ -no-undefined -module -avoid-version | 45 | module_la_LDFLAGS = @lt_enable_auto_import@ -no-undefined -module -avoid-version |
46 | module_la_LIBTOOLFLAGS = --tag=disable-static | 46 | module_la_LIBTOOLFLAGS = --tag=disable-static |
47 | 47 | ||
diff --git a/legacy/evas/src/modules/engines/directfb/Makefile.am b/legacy/evas/src/modules/engines/directfb/Makefile.am index c7ce8ffce9..3d3ea20b20 100644 --- a/legacy/evas/src/modules/engines/directfb/Makefile.am +++ b/legacy/evas/src/modules/engines/directfb/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
13 | @evas_engine_directfb_cflags@ | 13 | @evas_engine_directfb_cflags@ |
14 | 14 | ||
@@ -28,7 +28,7 @@ pkg_LTLIBRARIES = module.la | |||
28 | 28 | ||
29 | module_la_SOURCES = $(DIRECTFB_SOURCES) | 29 | module_la_SOURCES = $(DIRECTFB_SOURCES) |
30 | 30 | ||
31 | module_la_LIBADD = @EINA_LIBS@ $(DIRECTFB_LIBADD) $(top_builddir)/src/lib/libevas.la | 31 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(DIRECTFB_LIBADD) $(top_builddir)/src/lib/libevas.la |
32 | module_la_LDFLAGS = -module -avoid-version | 32 | module_la_LDFLAGS = -module -avoid-version |
33 | module_la_LIBTOOLFLAGS = --tag=disable-static | 33 | module_la_LIBTOOLFLAGS = --tag=disable-static |
34 | 34 | ||
diff --git a/legacy/evas/src/modules/engines/fb/Makefile.am b/legacy/evas/src/modules/engines/fb/Makefile.am index 3046db94d8..1aa1acb85f 100644 --- a/legacy/evas/src/modules/engines/fb/Makefile.am +++ b/legacy/evas/src/modules/engines/fb/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
13 | @evas_engine_fb_cflags@ | 13 | @evas_engine_fb_cflags@ |
14 | 14 | ||
@@ -30,7 +30,7 @@ if !EVAS_STATIC_BUILD_FB | |||
30 | pkgdir = $(libdir)/evas/modules/engines/fb/$(MODULE_ARCH) | 30 | pkgdir = $(libdir)/evas/modules/engines/fb/$(MODULE_ARCH) |
31 | pkg_LTLIBRARIES = module.la | 31 | pkg_LTLIBRARIES = module.la |
32 | module_la_SOURCES = $(FB_SOURCES) | 32 | module_la_SOURCES = $(FB_SOURCES) |
33 | module_la_LIBADD = @EINA_LIBS@ $(FB_LIBADD) $(top_builddir)/src/lib/libevas.la | 33 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(FB_LIBADD) $(top_builddir)/src/lib/libevas.la |
34 | module_la_LDFLAGS = -module -avoid-version | 34 | module_la_LDFLAGS = -module -avoid-version |
35 | module_la_LIBTOOLFLAGS = --tag=disable-static | 35 | module_la_LIBTOOLFLAGS = --tag=disable-static |
36 | 36 | ||
diff --git a/legacy/evas/src/modules/engines/gl_cocoa/Makefile.am b/legacy/evas/src/modules/engines/gl_cocoa/Makefile.am index 1db05cc00f..02a213d0e0 100644 --- a/legacy/evas/src/modules/engines/gl_cocoa/Makefile.am +++ b/legacy/evas/src/modules/engines/gl_cocoa/Makefile.am | |||
@@ -6,7 +6,7 @@ AM_CPPFLAGS = \ | |||
6 | -I$(top_srcdir)/src/lib \ | 6 | -I$(top_srcdir)/src/lib \ |
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/modules/engines/gl_common \ | 8 | -I$(top_srcdir)/src/modules/engines/gl_common \ |
9 | @EINA_CFLAGS@ \ | 9 | @EVAS_GENERAL_CFLAGS@ \ |
10 | @GL_EET_CFLAGS@ \ | 10 | @GL_EET_CFLAGS@ \ |
11 | @FREETYPE_CFLAGS@ \ | 11 | @FREETYPE_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
@@ -30,7 +30,7 @@ pkgdir = $(libdir)/evas/modules/engines/gl_cocoa/$(MODULE_ARCH) | |||
30 | pkg_LTLIBRARIES = module.la | 30 | pkg_LTLIBRARIES = module.la |
31 | 31 | ||
32 | module_la_SOURCES = $(GL_COCOA_SOURCES) | 32 | module_la_SOURCES = $(GL_COCOA_SOURCES) |
33 | module_la_LIBADD = @EINA_LIBS@ @GL_EET_LIBS@ $(GL_COCOA_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ | 33 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @GL_EET_LIBS@ $(GL_COCOA_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ |
34 | module_la_LDFLAGS = -module -avoid-version | 34 | module_la_LDFLAGS = -module -avoid-version |
35 | module_la_LIBTOOLFLAGS = --tag=disable-static | 35 | module_la_LIBTOOLFLAGS = --tag=disable-static |
36 | 36 | ||
diff --git a/legacy/evas/src/modules/engines/gl_common/Makefile.am b/legacy/evas/src/modules/engines/gl_common/Makefile.am index b2ebc5b4f5..1b7e0b3015 100644 --- a/legacy/evas/src/modules/engines/gl_common/Makefile.am +++ b/legacy/evas/src/modules/engines/gl_common/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @GL_EET_CFLAGS@ \ | 10 | @GL_EET_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ | 12 | @FRIBIDI_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_ENGINE_GL_COMMON | 14 | if BUILD_ENGINE_GL_COMMON |
@@ -93,7 +93,7 @@ shader/yuy2_vert.h \ | |||
93 | shader/yuy2_nomul_frag.h \ | 93 | shader/yuy2_nomul_frag.h \ |
94 | shader/yuy2_nomul_vert.h | 94 | shader/yuy2_nomul_vert.h |
95 | 95 | ||
96 | libevas_engine_gl_common_la_LIBADD = @EINA_LIBS@ @GL_EET_LIBS@ @evas_engine_gl_common_libs@ @dlopen_libs@ | 96 | libevas_engine_gl_common_la_LIBADD = @EVAS_GENERAL_LIBS@ @GL_EET_LIBS@ @evas_engine_gl_common_libs@ @dlopen_libs@ |
97 | endif | 97 | endif |
98 | 98 | ||
99 | EXTRA_DIST = \ | 99 | EXTRA_DIST = \ |
diff --git a/legacy/evas/src/modules/engines/gl_sdl/Makefile.am b/legacy/evas/src/modules/engines/gl_sdl/Makefile.am index 9fd5827d61..86ed306ddf 100644 --- a/legacy/evas/src/modules/engines/gl_sdl/Makefile.am +++ b/legacy/evas/src/modules/engines/gl_sdl/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines/gl_common \ | 8 | -I$(top_srcdir)/src/modules/engines/gl_common \ |
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @GL_EET_CFLAGS@ \ | 12 | @GL_EET_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @evas_engine_gl_sdl_cflags@ | 14 | @evas_engine_gl_sdl_cflags@ |
@@ -30,7 +30,7 @@ pkgdir = $(libdir)/evas/modules/engines/gl_sdl/$(MODULE_ARCH) | |||
30 | pkg_LTLIBRARIES = module.la | 30 | pkg_LTLIBRARIES = module.la |
31 | 31 | ||
32 | module_la_SOURCES = $(GL_SDL_SOURCES) | 32 | module_la_SOURCES = $(GL_SDL_SOURCES) |
33 | module_la_LIBADD = @EINA_LIBS@ $(GL_SDL_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ | 33 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(GL_SDL_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ |
34 | module_la_LDFLAGS = -module -avoid-version | 34 | module_la_LDFLAGS = -module -avoid-version |
35 | module_la_LIBTOOLFLAGS = --tag=disable-static | 35 | module_la_LIBTOOLFLAGS = --tag=disable-static |
36 | 36 | ||
diff --git a/legacy/evas/src/modules/engines/gl_x11/Makefile.am b/legacy/evas/src/modules/engines/gl_x11/Makefile.am index 99ad963854..e1859339f9 100644 --- a/legacy/evas/src/modules/engines/gl_x11/Makefile.am +++ b/legacy/evas/src/modules/engines/gl_x11/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines/gl_common \ | 8 | -I$(top_srcdir)/src/modules/engines/gl_common \ |
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @GL_EET_CFLAGS@ \ | 12 | @GL_EET_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @evas_engine_gl_xlib_cflags@ | 14 | @evas_engine_gl_xlib_cflags@ |
@@ -31,7 +31,7 @@ pkgdir = $(libdir)/evas/modules/engines/gl_x11/$(MODULE_ARCH) | |||
31 | pkg_LTLIBRARIES = module.la | 31 | pkg_LTLIBRARIES = module.la |
32 | 32 | ||
33 | module_la_SOURCES = $(GL_X11_SOURCES) | 33 | module_la_SOURCES = $(GL_X11_SOURCES) |
34 | module_la_LIBADD = @EINA_LIBS@ @GL_EET_LIBS@ $(GL_X11_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ | 34 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @GL_EET_LIBS@ $(GL_X11_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ |
35 | module_la_LDFLAGS = -module -avoid-version | 35 | module_la_LDFLAGS = -module -avoid-version |
36 | module_la_LIBTOOLFLAGS = --tag=disable-static | 36 | module_la_LIBTOOLFLAGS = --tag=disable-static |
37 | 37 | ||
diff --git a/legacy/evas/src/modules/engines/psl1ght/Makefile.am b/legacy/evas/src/modules/engines/psl1ght/Makefile.am index 557e51cb8a..306ad03dab 100644 --- a/legacy/evas/src/modules/engines/psl1ght/Makefile.am +++ b/legacy/evas/src/modules/engines/psl1ght/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
13 | @evas_engine_psl1ght_cflags@ | 13 | @evas_engine_psl1ght_cflags@ |
14 | 14 | ||
@@ -29,7 +29,7 @@ if !EVAS_STATIC_BUILD_PSL1GHT | |||
29 | pkgdir = $(libdir)/evas/modules/engines/psl1ght/$(MODULE_ARCH) | 29 | pkgdir = $(libdir)/evas/modules/engines/psl1ght/$(MODULE_ARCH) |
30 | pkg_LTLIBRARIES = module.la | 30 | pkg_LTLIBRARIES = module.la |
31 | module_la_SOURCES = $(PSL1GHT_SOURCES) | 31 | module_la_SOURCES = $(PSL1GHT_SOURCES) |
32 | module_la_LIBADD = @EINA_LIBS@ $(PSL1GHT_LIBADD) $(top_builddir)/src/lib/libevas.la | 32 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(PSL1GHT_LIBADD) $(top_builddir)/src/lib/libevas.la |
33 | module_la_LDFLAGS = -module -avoid-version | 33 | module_la_LDFLAGS = -module -avoid-version |
34 | module_la_LIBTOOLFLAGS = --tag=disable-static | 34 | module_la_LIBTOOLFLAGS = --tag=disable-static |
35 | 35 | ||
diff --git a/legacy/evas/src/modules/engines/software_16/Makefile.am b/legacy/evas/src/modules/engines/software_16/Makefile.am index 6e45657795..67e880b233 100644 --- a/legacy/evas/src/modules/engines/software_16/Makefile.am +++ b/legacy/evas/src/modules/engines/software_16/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @EINA_CFLAGS@ | 12 | @EVAS_GENERAL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_ENGINE_SOFTWARE_16 | 14 | if BUILD_ENGINE_SOFTWARE_16 |
15 | 15 | ||
@@ -21,7 +21,7 @@ if !EVAS_STATIC_BUILD_SOFTWARE_16 | |||
21 | pkgdir = $(libdir)/evas/modules/engines/software_16/$(MODULE_ARCH) | 21 | pkgdir = $(libdir)/evas/modules/engines/software_16/$(MODULE_ARCH) |
22 | pkg_LTLIBRARIES = module.la | 22 | pkg_LTLIBRARIES = module.la |
23 | module_la_SOURCES = $(SOFTWARE_16_SOURCES) | 23 | module_la_SOURCES = $(SOFTWARE_16_SOURCES) |
24 | module_la_LIBADD = @EINA_LIBS@ $(top_builddir)/src/lib/libevas.la | 24 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(top_builddir)/src/lib/libevas.la |
25 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 25 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
26 | module_la_LIBTOOLFLAGS = --tag=disable-static | 26 | module_la_LIBTOOLFLAGS = --tag=disable-static |
27 | 27 | ||
diff --git a/legacy/evas/src/modules/engines/software_16_sdl/Makefile.am b/legacy/evas/src/modules/engines/software_16_sdl/Makefile.am index 64ce6d6531..260eedfb42 100644 --- a/legacy/evas/src/modules/engines/software_16_sdl/Makefile.am +++ b/legacy/evas/src/modules/engines/software_16_sdl/Makefile.am | |||
@@ -6,7 +6,7 @@ INCLUDES = -I. -I$(top_srcdir)/src/lib -I$(top_srcdir)/src/lib/include \ | |||
6 | @FREETYPE_CFLAGS@ \ | 6 | @FREETYPE_CFLAGS@ \ |
7 | @PIXMAN_CFLAGS@ \ | 7 | @PIXMAN_CFLAGS@ \ |
8 | @SDL_CFLAGS@ \ | 8 | @SDL_CFLAGS@ \ |
9 | @EINA_CFLAGS@ \ | 9 | @EVAS_GENERAL_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ | 10 | @FRIBIDI_CFLAGS@ |
11 | 11 | ||
12 | if BUILD_ENGINE_SOFTWARE_16_SDL | 12 | if BUILD_ENGINE_SOFTWARE_16_SDL |
@@ -26,7 +26,7 @@ pkg_LTLIBRARIES = module.la | |||
26 | 26 | ||
27 | module_la_SOURCES = $(SOFTWARE_SDL_SOURCES) | 27 | module_la_SOURCES = $(SOFTWARE_SDL_SOURCES) |
28 | 28 | ||
29 | module_la_LIBADD = @EINA_LIBS@ @SDL_LIBS@ $(top_builddir)/src/lib/libevas.la | 29 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @SDL_LIBS@ $(top_builddir)/src/lib/libevas.la |
30 | module_la_LDFLAGS = -no-undefined -module -avoid-version -L$(top_builddir)/src/lib -L$(top_builddir)/src/lib/.libs | 30 | module_la_LDFLAGS = -no-undefined -module -avoid-version -L$(top_builddir)/src/lib -L$(top_builddir)/src/lib/.libs |
31 | 31 | ||
32 | else | 32 | else |
diff --git a/legacy/evas/src/modules/engines/software_16_wince/Makefile.am b/legacy/evas/src/modules/engines/software_16_wince/Makefile.am index b8a30769b6..5ac702c22a 100644 --- a/legacy/evas/src/modules/engines/software_16_wince/Makefile.am +++ b/legacy/evas/src/modules/engines/software_16_wince/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | -I$(top_srcdir)/src/modules/engines/software_16 \ | 9 | -I$(top_srcdir)/src/modules/engines/software_16 \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FREETYPE_CFLAGS@ \ | 11 | @FREETYPE_CFLAGS@ \ |
12 | @PIXMAN_CFLAGS@ \ | 12 | @PIXMAN_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
@@ -35,7 +35,7 @@ pkg_LTLIBRARIES = module.la | |||
35 | 35 | ||
36 | module_la_SOURCES = $(SOFTWARE_16_WINCE_SOURCE) | 36 | module_la_SOURCES = $(SOFTWARE_16_WINCE_SOURCE) |
37 | module_la_CXXFLAGS = -fno-rtti -fno-exceptions | 37 | module_la_CXXFLAGS = -fno-rtti -fno-exceptions |
38 | module_la_LIBADD = @EINA_LIBS@ $(top_builddir)/src/lib/libevas.la $(SOFTWARE_16_WINCE_LIBADD) | 38 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(top_builddir)/src/lib/libevas.la $(SOFTWARE_16_WINCE_LIBADD) |
39 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 39 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
40 | module_la_LIBTOOLFLAGS = --tag=disable-static | 40 | module_la_LIBTOOLFLAGS = --tag=disable-static |
41 | 41 | ||
diff --git a/legacy/evas/src/modules/engines/software_16_x11/Makefile.am b/legacy/evas/src/modules/engines/software_16_x11/Makefile.am index 4ca894a7be..68be01476b 100644 --- a/legacy/evas/src/modules/engines/software_16_x11/Makefile.am +++ b/legacy/evas/src/modules/engines/software_16_x11/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | -I$(top_srcdir)/src/modules/engines/software_16 \ | 9 | -I$(top_srcdir)/src/modules/engines/software_16 \ |
10 | @FREETYPE_CFLAGS@ \ | 10 | @FREETYPE_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @PIXMAN_CFLAGS@ \ | 12 | @PIXMAN_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @evas_engine_software_16_x11_cflags@ | 14 | @evas_engine_software_16_x11_cflags@ |
@@ -31,7 +31,7 @@ pkgdir = $(libdir)/evas/modules/engines/software_16_x11/$(MODULE_ARCH) | |||
31 | pkg_LTLIBRARIES = module.la | 31 | pkg_LTLIBRARIES = module.la |
32 | 32 | ||
33 | module_la_SOURCES = $(SOFTWARE_16_X11_SOURCES) | 33 | module_la_SOURCES = $(SOFTWARE_16_X11_SOURCES) |
34 | module_la_LIBADD = @EINA_LIBS@ $(SOFTWARE_16_X11_LIBADD) $(top_builddir)/src/lib/libevas.la | 34 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(SOFTWARE_16_X11_LIBADD) $(top_builddir)/src/lib/libevas.la |
35 | module_la_LDFLAGS = -no-undefined -module -avoid-version | 35 | module_la_LDFLAGS = -no-undefined -module -avoid-version |
36 | module_la_LIBTOOLFLAGS = --tag=disable-static | 36 | module_la_LIBTOOLFLAGS = --tag=disable-static |
37 | 37 | ||
diff --git a/legacy/evas/src/modules/engines/software_8/Makefile.am b/legacy/evas/src/modules/engines/software_8/Makefile.am index f6361c75ff..d69505e743 100644 --- a/legacy/evas/src/modules/engines/software_8/Makefile.am +++ b/legacy/evas/src/modules/engines/software_8/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @EINA_CFLAGS@ | 12 | @EVAS_GENERAL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_ENGINE_SOFTWARE_8 | 14 | if BUILD_ENGINE_SOFTWARE_8 |
15 | 15 | ||
@@ -21,7 +21,7 @@ if !EVAS_STATIC_BUILD_SOFTWARE_8_X11 | |||
21 | pkgdir = $(libdir)/evas/modules/engines/software_8/$(MODULE_ARCH) | 21 | pkgdir = $(libdir)/evas/modules/engines/software_8/$(MODULE_ARCH) |
22 | pkg_LTLIBRARIES = module.la | 22 | pkg_LTLIBRARIES = module.la |
23 | module_la_SOURCES = $(SOFTWARE_8_SOURCES) | 23 | module_la_SOURCES = $(SOFTWARE_8_SOURCES) |
24 | module_la_LIBADD = @EINA_LIBS@ $(top_builddir)/src/lib/libevas.la | 24 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(top_builddir)/src/lib/libevas.la |
25 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 25 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
26 | module_la_LIBTOOLFLAGS = --tag=disable-static | 26 | module_la_LIBTOOLFLAGS = --tag=disable-static |
27 | 27 | ||
diff --git a/legacy/evas/src/modules/engines/software_8_x11/Makefile.am b/legacy/evas/src/modules/engines/software_8_x11/Makefile.am index aac2b2c5d9..700b63c426 100644 --- a/legacy/evas/src/modules/engines/software_8_x11/Makefile.am +++ b/legacy/evas/src/modules/engines/software_8_x11/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | -I$(top_srcdir)/src/modules/engines/software_8 \ | 9 | -I$(top_srcdir)/src/modules/engines/software_8 \ |
10 | @FREETYPE_CFLAGS@ \ | 10 | @FREETYPE_CFLAGS@ \ |
11 | @PIXMAN_CFLAGS@ \ | 11 | @PIXMAN_CFLAGS@ \ |
12 | @EINA_CFLAGS@ \ | 12 | @EVAS_GENERAL_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @evas_engine_software_8_x11_cflags@ | 14 | @evas_engine_software_8_x11_cflags@ |
15 | 15 | ||
@@ -31,7 +31,7 @@ pkgdir = $(libdir)/evas/modules/engines/software_8_x11/$(MODULE_ARCH) | |||
31 | pkg_LTLIBRARIES = module.la | 31 | pkg_LTLIBRARIES = module.la |
32 | 32 | ||
33 | module_la_SOURCES = $(SOFTWARE_8_X11_SOURCES) | 33 | module_la_SOURCES = $(SOFTWARE_8_X11_SOURCES) |
34 | module_la_LIBADD = @EINA_LIBS@ $(SOFTWARE_8_X11_LIBADD) $(top_builddir)/src/lib/libevas.la | 34 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(SOFTWARE_8_X11_LIBADD) $(top_builddir)/src/lib/libevas.la |
35 | #-lxcb-image -lxcb-shm -lxcb -lpixman-1 | 35 | #-lxcb-image -lxcb-shm -lxcb -lpixman-1 |
36 | module_la_LDFLAGS = -no-undefined -module -avoid-version | 36 | module_la_LDFLAGS = -no-undefined -module -avoid-version |
37 | module_la_LIBTOOLFLAGS = --tag=disable-static | 37 | module_la_LIBTOOLFLAGS = --tag=disable-static |
diff --git a/legacy/evas/src/modules/engines/software_ddraw/Makefile.am b/legacy/evas/src/modules/engines/software_ddraw/Makefile.am index ac8a9fe87c..c8e1090940 100644 --- a/legacy/evas/src/modules/engines/software_ddraw/Makefile.am +++ b/legacy/evas/src/modules/engines/software_ddraw/Makefile.am | |||
@@ -6,7 +6,7 @@ AM_CPPFLAGS = \ | |||
6 | -I$(top_srcdir)/src/lib \ | 6 | -I$(top_srcdir)/src/lib \ |
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | @EINA_CFLAGS@ \ | 9 | @EVAS_GENERAL_CFLAGS@ \ |
10 | @FREETYPE_CFLAGS@ \ | 10 | @FREETYPE_CFLAGS@ \ |
11 | @PIXMAN_CFLAGS@ \ | 11 | @PIXMAN_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
@@ -32,7 +32,7 @@ pkgdir = $(libdir)/evas/modules/engines/software_ddraw/$(MODULE_ARCH) | |||
32 | pkg_LTLIBRARIES = module.la | 32 | pkg_LTLIBRARIES = module.la |
33 | module_la_SOURCES = $(SOFTWARE_DDRAW_SOURCES) | 33 | module_la_SOURCES = $(SOFTWARE_DDRAW_SOURCES) |
34 | module_la_CXXFLAGS = -fno-rtti -fno-exceptions | 34 | module_la_CXXFLAGS = -fno-rtti -fno-exceptions |
35 | module_la_LIBADD = @EINA_LIBS@ $(SOFTWARE_DDRAW_LIBADD) $(top_builddir)/src/lib/libevas.la | 35 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(SOFTWARE_DDRAW_LIBADD) $(top_builddir)/src/lib/libevas.la |
36 | module_la_LDFLAGS = @lt_enable_auto_import@ -no-undefined -module -avoid-version | 36 | module_la_LDFLAGS = @lt_enable_auto_import@ -no-undefined -module -avoid-version |
37 | module_la_LIBTOOLFLAGS = --tag=disable-static | 37 | module_la_LIBTOOLFLAGS = --tag=disable-static |
38 | 38 | ||
diff --git a/legacy/evas/src/modules/engines/software_gdi/Makefile.am b/legacy/evas/src/modules/engines/software_gdi/Makefile.am index b5981af09f..296f141074 100644 --- a/legacy/evas/src/modules/engines/software_gdi/Makefile.am +++ b/legacy/evas/src/modules/engines/software_gdi/Makefile.am | |||
@@ -6,7 +6,7 @@ AM_CPPFLAGS = \ | |||
6 | -I$(top_srcdir)/src/lib \ | 6 | -I$(top_srcdir)/src/lib \ |
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/modules/engines \ | 8 | -I$(top_srcdir)/src/modules/engines \ |
9 | @EINA_CFLAGS@ \ | 9 | @EVAS_GENERAL_CFLAGS@ \ |
10 | @FREETYPE_CFLAGS@ \ | 10 | @FREETYPE_CFLAGS@ \ |
11 | @PIXMAN_CFLAGS@ \ | 11 | @PIXMAN_CFLAGS@ \ |
12 | @FRIBIDI_CFLAGS@ \ | 12 | @FRIBIDI_CFLAGS@ \ |
@@ -31,7 +31,7 @@ if !EVAS_STATIC_BUILD_SOFTWARE_GDI | |||
31 | pkgdir = $(libdir)/evas/modules/engines/software_gdi/$(MODULE_ARCH) | 31 | pkgdir = $(libdir)/evas/modules/engines/software_gdi/$(MODULE_ARCH) |
32 | pkg_LTLIBRARIES = module.la | 32 | pkg_LTLIBRARIES = module.la |
33 | module_la_SOURCES = $(SOFTWARE_GDI_SOURCES) | 33 | module_la_SOURCES = $(SOFTWARE_GDI_SOURCES) |
34 | module_la_LIBADD = $(top_builddir)/src/lib/libevas.la @EINA_LIBS@ $(SOFTWARE_GDI_LIBADD) | 34 | module_la_LIBADD = $(top_builddir)/src/lib/libevas.la @EVAS_GENERAL_LIBS@ $(SOFTWARE_GDI_LIBADD) |
35 | module_la_LDFLAGS = @lt_enable_auto_import@ -no-undefined -module -avoid-version | 35 | module_la_LDFLAGS = @lt_enable_auto_import@ -no-undefined -module -avoid-version |
36 | module_la_LIBTOOLFLAGS = --tag=disable-static | 36 | module_la_LIBTOOLFLAGS = --tag=disable-static |
37 | 37 | ||
diff --git a/legacy/evas/src/modules/engines/software_generic/Makefile.am b/legacy/evas/src/modules/engines/software_generic/Makefile.am index f31810e6de..a8d56be419 100644 --- a/legacy/evas/src/modules/engines/software_generic/Makefile.am +++ b/legacy/evas/src/modules/engines/software_generic/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | -I$(top_srcdir)/src/lib/cserve2 \ | 8 | -I$(top_srcdir)/src/lib/cserve2 \ |
9 | -I$(top_srcdir)/src/modules/engines \ | 9 | -I$(top_srcdir)/src/modules/engines \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FREETYPE_CFLAGS@ \ | 11 | @FREETYPE_CFLAGS@ \ |
12 | @PIXMAN_CFLAGS@ \ | 12 | @PIXMAN_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ | 13 | @FRIBIDI_CFLAGS@ |
@@ -22,7 +22,7 @@ pkg_LTLIBRARIES = module.la | |||
22 | 22 | ||
23 | module_la_SOURCES = $(SOFTWARE_GENERIC_SOURCES) | 23 | module_la_SOURCES = $(SOFTWARE_GENERIC_SOURCES) |
24 | 24 | ||
25 | module_la_LIBADD = @EINA_LIBS@ @dlopen_libs@ $(top_builddir)/src/lib/libevas.la | 25 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @dlopen_libs@ $(top_builddir)/src/lib/libevas.la |
26 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 26 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
27 | module_la_LIBTOOLFLAGS = --tag=disable-static | 27 | module_la_LIBTOOLFLAGS = --tag=disable-static |
28 | 28 | ||
diff --git a/legacy/evas/src/modules/engines/software_x11/Makefile.am b/legacy/evas/src/modules/engines/software_x11/Makefile.am index 7c15a270a7..8c0961d25d 100644 --- a/legacy/evas/src/modules/engines/software_x11/Makefile.am +++ b/legacy/evas/src/modules/engines/software_x11/Makefile.am | |||
@@ -15,7 +15,7 @@ AM_CPPFLAGS = \ | |||
15 | -I$(top_srcdir)/src/modules/engines \ | 15 | -I$(top_srcdir)/src/modules/engines \ |
16 | @FREETYPE_CFLAGS@ \ | 16 | @FREETYPE_CFLAGS@ \ |
17 | @PIXMAN_CFLAGS@ \ | 17 | @PIXMAN_CFLAGS@ \ |
18 | @EINA_CFLAGS@ \ | 18 | @EVAS_GENERAL_CFLAGS@ \ |
19 | @FRIBIDI_CFLAGS@ \ | 19 | @FRIBIDI_CFLAGS@ \ |
20 | @evas_engine_software_xlib_cflags@ | 20 | @evas_engine_software_xlib_cflags@ |
21 | 21 | ||
@@ -25,7 +25,7 @@ evas_xlib_buffer.c \ | |||
25 | evas_xlib_color.c \ | 25 | evas_xlib_color.c \ |
26 | evas_xlib_main.c | 26 | evas_xlib_main.c |
27 | 27 | ||
28 | SOFTWARE_X11_LIBADD = @FREETYPE_LIBS@ @EINA_LIBS@ @evas_engine_software_xlib_libs@ | 28 | SOFTWARE_X11_LIBADD = @FREETYPE_LIBS@ @EVAS_GENERAL_LIBS@ @evas_engine_software_xlib_libs@ |
29 | 29 | ||
30 | endif | 30 | endif |
31 | 31 | ||
@@ -39,7 +39,7 @@ AM_CPPFLAGS = \ | |||
39 | -I$(top_srcdir)/src/modules/engines \ | 39 | -I$(top_srcdir)/src/modules/engines \ |
40 | @FREETYPE_CFLAGS@ \ | 40 | @FREETYPE_CFLAGS@ \ |
41 | @PIXMAN_CFLAGS@ \ | 41 | @PIXMAN_CFLAGS@ \ |
42 | @EINA_CFLAGS@ \ | 42 | @EVAS_GENERAL_CFLAGS@ \ |
43 | @evas_engine_software_xcb_cflags@ | 43 | @evas_engine_software_xcb_cflags@ |
44 | 44 | ||
45 | SOFTWARE_X11_SOURCES += \ | 45 | SOFTWARE_X11_SOURCES += \ |
@@ -49,7 +49,7 @@ evas_xcb_buffer.c \ | |||
49 | evas_xcb_color.c \ | 49 | evas_xcb_color.c \ |
50 | evas_xcb_main.c | 50 | evas_xcb_main.c |
51 | 51 | ||
52 | SOFTWARE_X11_LIBADD = @FREETYPE_LIBS@ @PIXMAN_LIBS@ @EINA_LIBS@ @evas_engine_software_xcb_libs@ | 52 | SOFTWARE_X11_LIBADD = @FREETYPE_LIBS@ @PIXMAN_LIBS@ @EVAS_GENERAL_LIBS@ @evas_engine_software_xcb_libs@ |
53 | 53 | ||
54 | endif | 54 | endif |
55 | 55 | ||
diff --git a/legacy/evas/src/modules/engines/wayland_egl/Makefile.am b/legacy/evas/src/modules/engines/wayland_egl/Makefile.am index da6fcf77d7..3acf238a03 100644 --- a/legacy/evas/src/modules/engines/wayland_egl/Makefile.am +++ b/legacy/evas/src/modules/engines/wayland_egl/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -I$(top_srcdir)/src/modules/engines/gl_common \ | 8 | -I$(top_srcdir)/src/modules/engines/gl_common \ |
9 | @FREETYPE_CFLAGS@ \ | 9 | @FREETYPE_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @GL_EET_CFLAGS@ \ | 12 | @GL_EET_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @evas_engine_wayland_egl_cflags@ | 14 | @evas_engine_wayland_egl_cflags@ |
@@ -19,7 +19,7 @@ WAYLAND_EGL_SOURCES = \ | |||
19 | evas_engine.c \ | 19 | evas_engine.c \ |
20 | evas_wl_main.c | 20 | evas_wl_main.c |
21 | 21 | ||
22 | WAYLAND_EGL_LIBADD = @FREETYPE_LIBS@ @GL_EET_LIBS@ @EINA_LIBS@ @evas_engine_wayland_egl_libs@ @dlopen_libs@ $(top_builddir)/src/modules/engines/gl_common/libevas_engine_gl_common.la | 22 | WAYLAND_EGL_LIBADD = @FREETYPE_LIBS@ @GL_EET_LIBS@ @EVAS_GENERAL_LIBS@ @evas_engine_wayland_egl_libs@ @dlopen_libs@ $(top_builddir)/src/modules/engines/gl_common/libevas_engine_gl_common.la |
23 | 23 | ||
24 | includes_HEADERS = Evas_Engine_Wayland_Egl.h | 24 | includes_HEADERS = Evas_Engine_Wayland_Egl.h |
25 | includesdir = $(includedir)/evas-@VMAJ@ | 25 | includesdir = $(includedir)/evas-@VMAJ@ |
diff --git a/legacy/evas/src/modules/engines/wayland_shm/Makefile.am b/legacy/evas/src/modules/engines/wayland_shm/Makefile.am index 111862585b..9a1ea99aa2 100644 --- a/legacy/evas/src/modules/engines/wayland_shm/Makefile.am +++ b/legacy/evas/src/modules/engines/wayland_shm/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | -I$(top_srcdir)/src/modules/engines \ | 9 | -I$(top_srcdir)/src/modules/engines \ |
10 | @FREETYPE_CFLAGS@ \ | 10 | @FREETYPE_CFLAGS@ \ |
11 | @PIXMAN_CFLAGS@ \ | 11 | @PIXMAN_CFLAGS@ \ |
12 | @EINA_CFLAGS@ \ | 12 | @EVAS_GENERAL_CFLAGS@ \ |
13 | @FRIBIDI_CFLAGS@ \ | 13 | @FRIBIDI_CFLAGS@ \ |
14 | @evas_engine_wayland_shm_cflags@ | 14 | @evas_engine_wayland_shm_cflags@ |
15 | 15 | ||
@@ -19,7 +19,7 @@ WAYLAND_SHM_SOURCES = \ | |||
19 | evas_engine.c \ | 19 | evas_engine.c \ |
20 | evas_outbuf.c | 20 | evas_outbuf.c |
21 | 21 | ||
22 | WAYLAND_SHM_LIBADD = @FREETYPE_LIBS@ @PIXMAN_LIBS@ @EINA_LIBS@ @evas_engine_wayland_shm_libs@ | 22 | WAYLAND_SHM_LIBADD = @FREETYPE_LIBS@ @PIXMAN_LIBS@ @EVAS_GENERAL_LIBS@ @evas_engine_wayland_shm_libs@ |
23 | 23 | ||
24 | includes_HEADERS = Evas_Engine_Wayland_Shm.h | 24 | includes_HEADERS = Evas_Engine_Wayland_Shm.h |
25 | includesdir = $(includedir)/evas-@VMAJ@ | 25 | includesdir = $(includedir)/evas-@VMAJ@ |
diff --git a/legacy/evas/src/modules/loaders/bmp/Makefile.am b/legacy/evas/src/modules/loaders/bmp/Makefile.am index 1ab312885a..06861e2d01 100644 --- a/legacy/evas/src/modules/loaders/bmp/Makefile.am +++ b/legacy/evas/src/modules/loaders/bmp/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_LOADER_BMP | 14 | if BUILD_LOADER_BMP |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_bmp.c | 20 | module_la_SOURCES = evas_image_load_bmp.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ -lm $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ -lm $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/edb/Makefile.am b/legacy/evas/src/modules/loaders/edb/Makefile.am index eeece3f820..d74f3b7065 100644 --- a/legacy/evas/src/modules/loaders/edb/Makefile.am +++ b/legacy/evas/src/modules/loaders/edb/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @evas_image_loader_edb_cflags@ \ | 11 | @evas_image_loader_edb_cflags@ \ |
12 | @EINA_CFLAGS@ | 12 | @EVAS_GENERAL_CFLAGS@ |
13 | 13 | ||
14 | 14 | ||
15 | if BUILD_LOADER_EDB | 15 | if BUILD_LOADER_EDB |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_edb.c | 21 | module_la_SOURCES = evas_image_load_edb.c |
22 | 22 | ||
23 | module_la_LIBADD = @evas_image_loader_edb_libs@ @EINA_LIBS@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @evas_image_loader_edb_libs@ @EVAS_GENERAL_LIBS@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/loaders/eet/Makefile.am b/legacy/evas/src/modules/loaders/eet/Makefile.am index 2a3f92ffc0..7e954e9a49 100644 --- a/legacy/evas/src/modules/loaders/eet/Makefile.am +++ b/legacy/evas/src/modules/loaders/eet/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @evas_image_loader_eet_cflags@ \ | 11 | @evas_image_loader_eet_cflags@ \ |
12 | @EINA_CFLAGS@ | 12 | @EVAS_GENERAL_CFLAGS@ |
13 | 13 | ||
14 | 14 | ||
15 | if BUILD_LOADER_EET | 15 | if BUILD_LOADER_EET |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_eet.c | 21 | module_la_SOURCES = evas_image_load_eet.c |
22 | 22 | ||
23 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_eet_libs@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_eet_libs@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/loaders/generic/Makefile.am b/legacy/evas/src/modules/loaders/generic/Makefile.am index 31975b84fb..6da5d91778 100644 --- a/legacy/evas/src/modules/loaders/generic/Makefile.am +++ b/legacy/evas/src/modules/loaders/generic/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @evas_image_loader_generic_cflags@ \ | 11 | @evas_image_loader_generic_cflags@ \ |
12 | @EINA_CFLAGS@ \ | 12 | @EVAS_GENERAL_CFLAGS@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
14 | 14 | ||
15 | 15 | ||
@@ -21,7 +21,7 @@ pkg_LTLIBRARIES = module.la | |||
21 | 21 | ||
22 | module_la_SOURCES = evas_image_load_generic.c | 22 | module_la_SOURCES = evas_image_load_generic.c |
23 | 23 | ||
24 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_generic_libs@ @EFL_SHM_OPEN_LIBS@ $(top_builddir)/src/lib/libevas.la | 24 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_generic_libs@ @EFL_SHM_OPEN_LIBS@ $(top_builddir)/src/lib/libevas.la |
25 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 25 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
26 | module_la_LIBTOOLFLAGS = --tag=disable-static | 26 | module_la_LIBTOOLFLAGS = --tag=disable-static |
27 | 27 | ||
diff --git a/legacy/evas/src/modules/loaders/gif/Makefile.am b/legacy/evas/src/modules/loaders/gif/Makefile.am index aa5c240de2..cb666c1fc3 100644 --- a/legacy/evas/src/modules/loaders/gif/Makefile.am +++ b/legacy/evas/src/modules/loaders/gif/Makefile.am | |||
@@ -9,7 +9,7 @@ AM_CPPFLAGS = \ | |||
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @evas_image_loader_gif_cflags@ \ | 11 | @evas_image_loader_gif_cflags@ \ |
12 | @EINA_CFLAGS@ | 12 | @EVAS_GENERAL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_LOADER_GIF | 14 | if BUILD_LOADER_GIF |
15 | if !EVAS_STATIC_BUILD_GIF | 15 | if !EVAS_STATIC_BUILD_GIF |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_gif.c | 20 | module_la_SOURCES = evas_image_load_gif.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_gif_libs@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_gif_libs@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/ico/Makefile.am b/legacy/evas/src/modules/loaders/ico/Makefile.am index a2d722d151..65983038ac 100644 --- a/legacy/evas/src/modules/loaders/ico/Makefile.am +++ b/legacy/evas/src/modules/loaders/ico/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_LOADER_ICO | 14 | if BUILD_LOADER_ICO |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_ico.c | 20 | module_la_SOURCES = evas_image_load_ico.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/jpeg/Makefile.am b/legacy/evas/src/modules/loaders/jpeg/Makefile.am index a5eb2ae739..03e831c43b 100644 --- a/legacy/evas/src/modules/loaders/jpeg/Makefile.am +++ b/legacy/evas/src/modules/loaders/jpeg/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_jpeg_cflags@ \ | 12 | @evas_image_loader_jpeg_cflags@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_jpeg.c | 21 | module_la_SOURCES = evas_image_load_jpeg.c |
22 | 22 | ||
23 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ @evas_image_loader_jpeg_libs@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ @evas_image_loader_jpeg_libs@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/loaders/pmaps/Makefile.am b/legacy/evas/src/modules/loaders/pmaps/Makefile.am index ff7fdf8b17..366f8900ca 100644 --- a/legacy/evas/src/modules/loaders/pmaps/Makefile.am +++ b/legacy/evas/src/modules/loaders/pmaps/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_pmaps_cflags@ \ | 12 | @evas_image_loader_pmaps_cflags@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_pmaps.c | 21 | module_la_SOURCES = evas_image_load_pmaps.c |
22 | 22 | ||
23 | module_la_LIBADD = @evas_image_loader_pmaps_libs@ @EINA_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @evas_image_loader_pmaps_libs@ @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/loaders/png/Makefile.am b/legacy/evas/src/modules/loaders/png/Makefile.am index 6958f02138..08574ee956 100644 --- a/legacy/evas/src/modules/loaders/png/Makefile.am +++ b/legacy/evas/src/modules/loaders/png/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_png_cflags@ \ | 12 | @evas_image_loader_png_cflags@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_png.c | 21 | module_la_SOURCES = evas_image_load_png.c |
22 | 22 | ||
23 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_png_libs@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_png_libs@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/loaders/psd/Makefile.am b/legacy/evas/src/modules/loaders/psd/Makefile.am index 7ce9f2c716..5715ed19a0 100644 --- a/legacy/evas/src/modules/loaders/psd/Makefile.am +++ b/legacy/evas/src/modules/loaders/psd/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_LOADER_PSD | 14 | if BUILD_LOADER_PSD |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_psd.c | 20 | module_la_SOURCES = evas_image_load_psd.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/svg/Makefile.am b/legacy/evas/src/modules/loaders/svg/Makefile.am index efb3e46437..976b3a8ea4 100644 --- a/legacy/evas/src/modules/loaders/svg/Makefile.am +++ b/legacy/evas/src/modules/loaders/svg/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_svg_cflags@ | 12 | @evas_image_loader_svg_cflags@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_esvg.c | 20 | module_la_SOURCES = evas_image_load_esvg.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_svg_libs@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_svg_libs@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/tga/Makefile.am b/legacy/evas/src/modules/loaders/tga/Makefile.am index eeec57a104..3d67668357 100644 --- a/legacy/evas/src/modules/loaders/tga/Makefile.am +++ b/legacy/evas/src/modules/loaders/tga/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @FRIBIDI_CFLAGS@ \ | 9 | @FRIBIDI_CFLAGS@ \ |
10 | @PIXMAN_CFLAGS@ \ | 10 | @PIXMAN_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_LOADER_TGA | 14 | if BUILD_LOADER_TGA |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_tga.c | 20 | module_la_SOURCES = evas_image_load_tga.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/tiff/Makefile.am b/legacy/evas/src/modules/loaders/tiff/Makefile.am index d44643c927..9adb737cdb 100644 --- a/legacy/evas/src/modules/loaders/tiff/Makefile.am +++ b/legacy/evas/src/modules/loaders/tiff/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_tiff_cflags@ \ | 12 | @evas_image_loader_tiff_cflags@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_tiff.c | 21 | module_la_SOURCES = evas_image_load_tiff.c |
22 | 22 | ||
23 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ @evas_image_loader_tiff_libs@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ @evas_image_loader_tiff_libs@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/loaders/wbmp/Makefile.am b/legacy/evas/src/modules/loaders/wbmp/Makefile.am index e5badaf982..109a02b2f1 100644 --- a/legacy/evas/src/modules/loaders/wbmp/Makefile.am +++ b/legacy/evas/src/modules/loaders/wbmp/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @FRIBIDI_CFLAGS@ \ | 10 | @FRIBIDI_CFLAGS@ \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @EVIL_CFLAGS@ | 12 | @EVIL_CFLAGS@ |
13 | 13 | ||
14 | if BUILD_LOADER_WBMP | 14 | if BUILD_LOADER_WBMP |
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_load_wbmp.c | 20 | module_la_SOURCES = evas_image_load_wbmp.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/loaders/xpm/Makefile.am b/legacy/evas/src/modules/loaders/xpm/Makefile.am index 219803b019..1213de5ec8 100644 --- a/legacy/evas/src/modules/loaders/xpm/Makefile.am +++ b/legacy/evas/src/modules/loaders/xpm/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_xpm_cflags@ \ | 12 | @evas_image_loader_xpm_cflags@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_load_xpm.c | 21 | module_la_SOURCES = evas_image_load_xpm.c |
22 | 22 | ||
23 | module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ @evas_image_loader_xpm_libs@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @EVIL_LIBS@ @evas_image_loader_xpm_libs@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/savers/edb/Makefile.am b/legacy/evas/src/modules/savers/edb/Makefile.am index b3cc95c842..e5f7e3cd04 100644 --- a/legacy/evas/src/modules/savers/edb/Makefile.am +++ b/legacy/evas/src/modules/savers/edb/Makefile.am | |||
@@ -6,7 +6,7 @@ AM_CPPFLAGS = -I. -I$(top_srcdir)/src/lib -I$(top_srcdir)/src/lib/include \ | |||
6 | @PIXMAN_CFLAGS@ \ | 6 | @PIXMAN_CFLAGS@ \ |
7 | @FRIBIDI_CFLAGS@ \ | 7 | @FRIBIDI_CFLAGS@ \ |
8 | @evas_image_loader_edb_cflags@ \ | 8 | @evas_image_loader_edb_cflags@ \ |
9 | @EINA_CFLAGS@ | 9 | @EVAS_GENERAL_CFLAGS@ |
10 | 10 | ||
11 | if BUILD_LOADER_EDB | 11 | if BUILD_LOADER_EDB |
12 | if !EVAS_STATIC_BUILD_EDB | 12 | if !EVAS_STATIC_BUILD_EDB |
@@ -16,7 +16,7 @@ pkg_LTLIBRARIES = module.la | |||
16 | 16 | ||
17 | module_la_SOURCES = evas_image_save_edb.c | 17 | module_la_SOURCES = evas_image_save_edb.c |
18 | 18 | ||
19 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_edb_libs@ $(top_builddir)/src/lib/libevas.la | 19 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_edb_libs@ $(top_builddir)/src/lib/libevas.la |
20 | module_la_LDFLAGS = -no-undefined -module -avoid-version | 20 | module_la_LDFLAGS = -no-undefined -module -avoid-version |
21 | module_la_LIBTOOLFLAGS = --tag=disable-static | 21 | module_la_LIBTOOLFLAGS = --tag=disable-static |
22 | 22 | ||
diff --git a/legacy/evas/src/modules/savers/eet/Makefile.am b/legacy/evas/src/modules/savers/eet/Makefile.am index 679bad040c..6d62167774 100644 --- a/legacy/evas/src/modules/savers/eet/Makefile.am +++ b/legacy/evas/src/modules/savers/eet/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_eet_cflags@ | 12 | @evas_image_loader_eet_cflags@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_save_eet.c | 20 | module_la_SOURCES = evas_image_save_eet.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_eet_libs@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_eet_libs@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/savers/jpeg/Makefile.am b/legacy/evas/src/modules/savers/jpeg/Makefile.am index 90afcca04d..c1c710450b 100644 --- a/legacy/evas/src/modules/savers/jpeg/Makefile.am +++ b/legacy/evas/src/modules/savers/jpeg/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS= \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_jpeg_cflags@ | 12 | @evas_image_loader_jpeg_cflags@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_save_jpeg.c | 20 | module_la_SOURCES = evas_image_save_jpeg.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_jpeg_libs@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_jpeg_libs@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/modules/savers/png/Makefile.am b/legacy/evas/src/modules/savers/png/Makefile.am index e25eeabdc5..43eb5b2241 100644 --- a/legacy/evas/src/modules/savers/png/Makefile.am +++ b/legacy/evas/src/modules/savers/png/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_png_cflags@ \ | 12 | @evas_image_loader_png_cflags@ \ |
13 | @EVIL_CFLAGS@ | 13 | @EVIL_CFLAGS@ |
@@ -20,7 +20,7 @@ pkg_LTLIBRARIES = module.la | |||
20 | 20 | ||
21 | module_la_SOURCES = evas_image_save_png.c | 21 | module_la_SOURCES = evas_image_save_png.c |
22 | 22 | ||
23 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_png_libs@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la | 23 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_png_libs@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la |
24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 24 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
25 | module_la_LIBTOOLFLAGS = --tag=disable-static | 25 | module_la_LIBTOOLFLAGS = --tag=disable-static |
26 | 26 | ||
diff --git a/legacy/evas/src/modules/savers/tiff/Makefile.am b/legacy/evas/src/modules/savers/tiff/Makefile.am index 4730018c75..c0f80393c5 100644 --- a/legacy/evas/src/modules/savers/tiff/Makefile.am +++ b/legacy/evas/src/modules/savers/tiff/Makefile.am | |||
@@ -7,7 +7,7 @@ AM_CPPFLAGS = \ | |||
7 | -I$(top_srcdir)/src/lib/include \ | 7 | -I$(top_srcdir)/src/lib/include \ |
8 | @FREETYPE_CFLAGS@ \ | 8 | @FREETYPE_CFLAGS@ \ |
9 | @PIXMAN_CFLAGS@ \ | 9 | @PIXMAN_CFLAGS@ \ |
10 | @EINA_CFLAGS@ \ | 10 | @EVAS_GENERAL_CFLAGS@ \ |
11 | @FRIBIDI_CFLAGS@ \ | 11 | @FRIBIDI_CFLAGS@ \ |
12 | @evas_image_loader_tiff_cflags@ | 12 | @evas_image_loader_tiff_cflags@ |
13 | 13 | ||
@@ -19,7 +19,7 @@ pkg_LTLIBRARIES = module.la | |||
19 | 19 | ||
20 | module_la_SOURCES = evas_image_save_tiff.c | 20 | module_la_SOURCES = evas_image_save_tiff.c |
21 | 21 | ||
22 | module_la_LIBADD = @EINA_LIBS@ @evas_image_loader_tiff_libs@ $(top_builddir)/src/lib/libevas.la | 22 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ @evas_image_loader_tiff_libs@ $(top_builddir)/src/lib/libevas.la |
23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 23 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
24 | module_la_LIBTOOLFLAGS = --tag=disable-static | 24 | module_la_LIBTOOLFLAGS = --tag=disable-static |
25 | 25 | ||
diff --git a/legacy/evas/src/tests/Makefile.am b/legacy/evas/src/tests/Makefile.am index c659106e24..d1790d4231 100644 --- a/legacy/evas/src/tests/Makefile.am +++ b/legacy/evas/src/tests/Makefile.am | |||
@@ -8,7 +8,7 @@ AM_CPPFLAGS = \ | |||
8 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 8 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
9 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 9 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
10 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ | 10 | -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
11 | @EINA_CFLAGS@ \ | 11 | @EVAS_GENERAL_CFLAGS@ \ |
12 | @CHECK_CFLAGS@ | 12 | @CHECK_CFLAGS@ |
13 | 13 | ||
14 | if EFL_ENABLE_TESTS | 14 | if EFL_ENABLE_TESTS |
@@ -24,6 +24,6 @@ evas_test_callbacks.c \ | |||
24 | evas_tests_helpers.h \ | 24 | evas_tests_helpers.h \ |
25 | evas_suite.h | 25 | evas_suite.h |
26 | 26 | ||
27 | evas_suite_LDADD = @CHECK_LIBS@ $(top_builddir)/src/lib/libevas.la @EINA_LIBS@ | 27 | evas_suite_LDADD = @CHECK_LIBS@ $(top_builddir)/src/lib/libevas.la @EVAS_GENERAL_LIBS@ |
28 | 28 | ||
29 | endif | 29 | endif |