diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-10-10 20:06:45 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-10-10 20:06:45 +0000 |
commit | 5512dc3fb98b3269624549ba7ad52b74e52b2987 (patch) | |
tree | 3f59ff17b820c397d0c6d815ffe37d6e7a475f4a /configure.ac | |
parent | 06e48b4296b7f09da6be3592b8cf0ccdccf64883 (diff) |
efl: libjpeg and zlib are mandatory.
TODO: we should have a better way to check those without requiring the check
for efl_lib_zlib and efl_lib_libjpeg.
SVN revision: 77794
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index abef03ae78..9092fa5844 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -692,6 +692,11 @@ fi | |||
692 | # libjpeg and zlib | 692 | # libjpeg and zlib |
693 | 693 | ||
694 | EFL_CHECK_LIBS([EET], [libjpeg zlib]) | 694 | EFL_CHECK_LIBS([EET], [libjpeg zlib]) |
695 | # TODO: better way to force those instead of is secondary check | ||
696 | if test "x${efl_lib_zlib}" != "xyes" -o "x${efl_lib_libjpeg}" != "xyes" ; then | ||
697 | AC_MSG_ERROR([Required EET libraries were not found.]) | ||
698 | fi | ||
699 | |||
695 | 700 | ||
696 | # Eina library | 701 | # Eina library |
697 | 702 | ||
@@ -743,10 +748,6 @@ esac | |||
743 | 748 | ||
744 | ### Check availability | 749 | ### Check availability |
745 | 750 | ||
746 | if test "x${efl_lib_zlib}" = "xyes" && test "x${efl_lib_libjpeg}" = "xyes" ; then | ||
747 | efl_have_eet="yes" | ||
748 | fi | ||
749 | |||
750 | #### End of Eet | 751 | #### End of Eet |
751 | 752 | ||
752 | 753 | ||