diff options
author | Iván Briano <sachieru@gmail.com> | 2011-10-11 02:35:08 +0000 |
---|---|---|
committer | Iván Briano <sachieru@gmail.com> | 2011-10-11 02:35:08 +0000 |
commit | 431a59333fb287bcf917db1a511ef48b2dab90b5 (patch) | |
tree | 01bd5a588ef732a4de4e7eb4521706b57f2245f6 /configure.ac | |
parent | da98dde899a482bc5e589d59890f3e3f0b2c932b (diff) |
Work with static modules too
SVN revision: 63972
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fb2d74a..4d52f8e 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -34,10 +34,16 @@ EXPEDITE_CHECK_ENGINE([software-x11], [Software X11], "yes") | |||
34 | 34 | ||
35 | if test "x${have_software_x11}" = "xyes" ; then | 35 | if test "x${have_software_x11}" = "xyes" ; then |
36 | have_software_xlib=`${PKG_CONFIG} --variable=Xlib evas-software-x11` | 36 | have_software_xlib=`${PKG_CONFIG} --variable=Xlib evas-software-x11` |
37 | if test "x${have_software_xlib}" = "xstatic" ; then | ||
38 | have_software_xlib="yes" | ||
39 | fi | ||
37 | if test "x${have_software_xlib}" = "xyes" ; then | 40 | if test "x${have_software_xlib}" = "xyes" ; then |
38 | AC_DEFINE(HAVE_EVAS_SOFTWARE_XLIB, 1, [Evas Software Xlib Engine Support]) | 41 | AC_DEFINE(HAVE_EVAS_SOFTWARE_XLIB, 1, [Evas Software Xlib Engine Support]) |
39 | fi | 42 | fi |
40 | have_software_xcb=`${PKG_CONFIG} --variable=XCB evas-software-x11` | 43 | have_software_xcb=`${PKG_CONFIG} --variable=XCB evas-software-x11` |
44 | if test "x${have_software_xcb}" = "xstatic" ; then | ||
45 | have_software_xcb="yes" | ||
46 | fi | ||
41 | if test "x${have_software_xcb}" = "xyes" ; then | 47 | if test "x${have_software_xcb}" = "xyes" ; then |
42 | AC_DEFINE(HAVE_EVAS_SOFTWARE_XCB, 1, [Evas Software XCB Engine Support]) | 48 | AC_DEFINE(HAVE_EVAS_SOFTWARE_XCB, 1, [Evas Software XCB Engine Support]) |
43 | fi | 49 | fi |