X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=configure.ac;h=e64f7da5e2900bee1bb878819f0940ae04ad53d9;hb=394e6f200182fe5ddc9d7f5a13383a13e129262d;hp=ba4b80c8c6a655e463c516e6d7bfe20627d9a836;hpb=a6ee5cfb63b6a1c79258716ae22ed2faafbad4ad;p=framework%2Fuifw%2Felementary.git diff --git a/configure.ac b/configure.ac index ba4b80c..e64f7da 100755 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ =-------##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_maj], [0]) -m4_define([v_min], [7]) +m4_define([v_min], [8]) m4_define([v_mic], [0]) m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v export || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n'])) m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))]) @@ -167,21 +167,22 @@ dnl managed by evil ELM_UNIX_DEF="#define" AC_CHECK_FUNCS(dlopen, res=yes, res=no) if test "x$res" = "xyes"; then - AC_CHECK_FUNCS(dladdr, AC_DEFINE(HAVE_DLADDR)) + AC_CHECK_FUNCS(dladdr, AC_DEFINE(HAVE_DLADDR)) have_dlopen="yes" else - AC_CHECK_LIB(dl, dlopen, res=yes, res=no) - if test "x$res" = "xyes"; then - AC_CHECK_LIB(dl, dladdr, AC_DEFINE(HAVE_DLADDR)) - dlopen_libs=-ldl + AC_CHECK_LIB(dl, dlopen, res=yes, res=no) + if test "x$res" = "xyes"; then + AC_CHECK_LIB(dl, dladdr, AC_DEFINE(HAVE_DLADDR)) + dlopen_libs=-ldl have_dlopen="yes" - fi + fi fi have_socket="yes" ;; esac AC_CHECK_FUNCS(strcasestr, AC_DEFINE(HAVE_STRCASESTR)) AM_CONDITIONAL([BUILD_RUN], [test "x$have_socket" = "xyes"]) +AM_CONDITIONAL([BUILD_MODULES], [test "x$have_dlopen" = "xyes"]) m4_ifdef([v_mic], [ @@ -191,16 +192,16 @@ m4_ifdef([v_mic], have_fork="no" want_quicklaunch="auto" AC_ARG_ENABLE([quick-launch], - [AC_HELP_STRING([--disable-quick-launch], [disable quick-launch support, @<:@default=detect@:>@])], - [want_quicklaunch=$enableval], []) + [AC_HELP_STRING([--disable-quick-launch], [disable quick-launch support, @<:@default=detect@:>@])], + [want_quicklaunch=$enableval], []) if test "x$want_quicklaunch" != "xno"; then AC_CHECK_FUNCS(fork, [ - have_fork="yes" - AC_DEFINE(HAVE_FORK) + have_fork="yes" + AC_DEFINE(HAVE_FORK) ]) fi -AM_CONDITIONAL([BUILD_QUICKLAUNCH], [test "x$have_fork" = "xyes" && "x$have_dlopen" = "xyes"]) +AM_CONDITIONAL([BUILD_QUICKLAUNCH], [test "x$have_fork" = "xyes" && test "x$have_dlopen" = "xyes"]) AC_SUBST(dlopen_libs) AC_SUBST(lt_enable_auto_import) @@ -215,42 +216,54 @@ PKG_CHECK_MODULES([ELEMENTARY], eina >= 1.0.999 eet >= 1.4.0 evas >= 1.0.999 - ecore >= 1.0.0 - ecore-evas >= 1.0.0 - ecore-file >= 1.0.0 - ecore-imf >= 1.0.0 + ecore >= 1.0.999 + ecore-evas >= 1.0.999 + ecore-file >= 1.0.999 + ecore-imf >= 1.0.999 edje >= 1.0.999 ] ) -PKG_CHECK_MODULES([ECORE_CON], - [ecore-con], - [ - have_ecore_con="yes" - AC_DEFINE(HAVE_ECORE_CON, 1, [Use Ecore_Con for downloding files]) - requirement_elm="ecore-con ${requirement_elm}" - ], - [have_ecore_con="no"]) +PKG_CHECK_MODULES([ELEMENTARY_ECORE_CON], + [ecore-con >= 1.0.999], + [ + ELEMENTARY_ECORE_CON_INC="#include " + AC_DEFINE(HAVE_ELEMENTARY_ECORE_CON, 1, [Have Ecore_Con support]) + have_ecore_con="yes" + requirement_elm="ecore-con >= 1.0.999 ${requirement_elm}" + ], + [have_ecore_con="no"]) +AC_SUBST(ELEMENTARY_ECORE_CON_INC) + +AM_CONDITIONAL([HAVE_ECORE_CON], [test "x${have_ecore_con}" = "xyes"]) PKG_CHECK_MODULES([EIO], - [eio], - [ - have_eio="yes" - AC_DEFINE(HAVE_EIO, 1, [Use EIO for asynchronous file access]) - requirement_elm="eio ${requirement_elm}" - ], - [have_eio="no"]) + [eio], + [ + have_eio="yes" + AC_DEFINE(HAVE_EIO, 1, [Use EIO for asynchronous file access]) + requirement_elm="eio ${requirement_elm}" + ], + [have_eio="no"]) AM_CONDITIONAL([HAVE_EIO], [test "x${have_eio}" = "xyes"]) -PKG_CHECK_MODULES([EMOTION], - [emotion], - [ - have_emotion="yes" - AC_DEFINE(HAVE_EMOTION, 1, [Use Emotion for asynchronous file access]) - requirement_elm="emotion ${requirement_elm}" - ], - [have_emotion="no"]) +have_emotion="no" +want_elementary_emotion="yes" +AC_ARG_ENABLE([emotion], + [AC_HELP_STRING([--disable-emotion], [disable emotion support. @<:@default=enabled@:>@])], + [want_elementary_emotion=$enableval], []) + +if test "x$want_elementary_emotion" != "xno"; then + PKG_CHECK_MODULES([EMOTION], + [emotion], + [ + have_emotion="yes" + AC_DEFINE(HAVE_EMOTION, 1, [Use Emotion for asynchronous file access]) + requirement_elm="emotion ${requirement_elm}" + ], + [have_emotion="no"]) +fi AM_CONDITIONAL([HAVE_EMOTION], [test "x${have_emotion}" = "xyes"]) @@ -325,6 +338,29 @@ if test "x$want_elementary_fb" = "xyes" -a "x$have_elementary_fb" = "xno"; then AC_MSG_ERROR([ecore-fb support requested, but not found by pkg-config.]) fi +have_elementary_psl1ght="no" +want_elementary_psl1ght="auto" +AC_ARG_ENABLE([ecore-psl1ght], + [AC_HELP_STRING([--disable-ecore-psl1ght], [disable ecore-psl1ght support. @<:@default=detect@:>@])], + [want_elementary_psl1ght=$enableval], []) + +if test "x$want_elementary_psl1ght" != "xno"; then + PKG_CHECK_MODULES([ELEMENTARY_PSL1GHT], + [ecore-psl1ght >= 1.0.0], + [ + AC_DEFINE(HAVE_ELEMENTARY_PSL1GHT, 1, [PSL1GHT support for Elementary]) + have_elementary_psl1ght="yes" + requirement_elm="ecore-psl1ght >= 1.0.0 ${requirement_elm}" + ], + [have_elementary_psl1ght="no"] + ) +else + have_elementary_psl1ght="no" +fi +if test "x$want_elementary_psl1ght" = "xyes" -a "x$have_elementary_psl1ght" = "xno"; then + AC_MSG_ERROR([ecore-psl1ght support requested, but not found by pkg-config.]) +fi + have_elementary_sdl="no" want_elementary_sdl="auto" AC_ARG_ENABLE([ecore-sdl], @@ -348,6 +384,29 @@ if test "x$want_elementary_sdl" = "xyes" -a "x$have_elementary_sdl" = "xno"; the AC_MSG_ERROR([ecore-sdl support requested, but not found by pkg-config.]) fi +have_elementary_cocoa="no" +want_elementary_cocoa="auto" +AC_ARG_ENABLE([ecore-cocoa], + [AC_HELP_STRING([--disable-ecore-cocoa], [disable ecore-cocoa support. @<:@default=detect@:>@])], + [want_elementary_cocoa=$enableval], []) + +if test "x$want_elementary_cocoa" != "xno"; then + PKG_CHECK_MODULES([ELEMENTARY_COCOA], + [ecore-cocoa >= 1.0.0], + [ + AC_DEFINE(HAVE_ELEMENTARY_COCOA, 1, [COCOA support for Elementary]) + have_elementary_cocoa="yes" + requirement_elm="ecore-cocoa >= 1.0.0 ${requirement_elm}" + ], + [have_elementary_cocoa="no"] + ) +else + have_elementary_cocoa="no" +fi +if test "x$want_elementary_cocoa" = "xyes" -a "x$have_elementary_cocoa" = "xno"; then + AC_MSG_ERROR([ecore-cocoa support requested, but not found by pkg-config.]) +fi + have_elementary_win32="no" want_elementary_win32="auto" AC_ARG_ENABLE([ecore-win32], @@ -558,7 +617,10 @@ if test "x$want_elementary_web" != "xno"; then "WebKit's data dir") have_elementary_web="yes" ELM_WEB_DEF="#define" - requirement_elm="web_client ${requirement_elm}" +## web_client? how about ewebkit? at least in current upstreak webkit +## there is no web_client.pc +# requirement_elm="web_client ${requirement_elm}" + requirement_elm="ewebkit ${requirement_elm}" ], [have_elementary_web="no"] ) @@ -590,15 +652,6 @@ ELM_LIBINTL_H_DEF="#undef" AC_CHECK_HEADER(libintl.h, [ELM_LIBINTL_H_DEF="#define"]) AC_SUBST(ELM_LIBINTL_H_DEF) -EFL_CHECK_THREADS([ - TH=1 -] , [ - AC_MSG_ERROR(no thread support found. required.) - exit 1 -]) -AC_SUBST(EFL_PTHREAD_CFLAGS) -AC_SUBST(EFL_PTHREAD_LIBS) - my_libs="-lm" AC_SUBST(my_libs) AC_SUBST(requirement_elm) @@ -612,18 +665,27 @@ EFL_ENABLE_BIN([elementary-test]) EFL_ENABLE_BIN([elementary-config]) m4_ifdef([AM_GNU_GETTEXT_VERSION], [ -AM_GNU_GETTEXT_VERSION([0.12.1]) +AM_GNU_GETTEXT_VERSION([0.17]) ]) m4_ifdef([AM_GNU_GETTEXT], [ AM_GNU_GETTEXT([external]) po_makefile_in=po/Makefile.in -AM_CONDITIONAL([HAVE_PO], [true]) +have_po="yes" ],[ -AM_CONDITIONAL([HAVE_PO], [false]) +have_po="no" ]) AC_SUBST(LTLIBINTL) +if test "x${POSUB}" = "x" ; then + have_po="no" +fi + +AM_CONDITIONAL([HAVE_PO], [test "x${have_po}" = "xyes"]) + +EFL_CHECK_PATH_MAX + + ### Build and install examples EFL_CHECK_BUILD_EXAMPLES([enable_build_examples="yes"], [enable_build_examples="no"]) EFL_CHECK_INSTALL_EXAMPLES([enable_install_examples="yes"], [enable_install_examples="no"]) @@ -633,7 +695,6 @@ AC_OUTPUT([ Makefile elementary.spec elementary.pc -doc/elementary.dox doc/Makefile doc/Doxyfile doc/widgets/Makefile @@ -642,6 +703,7 @@ src/lib/Makefile src/lib/Elementary.h src/bin/Makefile src/modules/Makefile +src/modules/access_output/Makefile src/modules/test_entry/Makefile src/modules/test_map/Makefile src/modules/ctxpopup_copypasteUI/Makefile @@ -678,11 +740,14 @@ echo echo " Engines:" echo " X11....................: ${have_elementary_x}" echo " Framebuffer............: ${have_elementary_fb}" +echo " PSL1GHT................: ${have_elementary_psl1ght}" echo " SDL....................: ${have_elementary_sdl}" +echo " Cocoa..................: ${have_elementary_cocoa}" echo " Windows XP.............: ${have_elementary_win32}" echo " Windows CE.............: ${have_elementary_wince}" echo echo " Features:" +echo " Ecore_Con..............: ${have_ecore_con}" echo " EDBus..................: ${have_elementary_edbus}" echo " EFreet.................: ${have_elementary_efreet}" echo " EWeather...............: ${have_elementary_eweather}" @@ -697,8 +762,8 @@ echo " eet......................: ${eet_eet}" echo " edje_cc..................: ${edje_cc}" echo echo " Build elementary_test....: ${have_elementary_test}" -echo " Examples.............: ${enable_build_examples}" -echo " Examples installed...: ${enable_install_examples}" +echo " Examples.................: ${enable_build_examples}" +echo " Examples installed.......: ${enable_install_examples}" echo " Build elementary_config..: ${have_elementary_config}" echo echo "Compilation................: make (or gmake)"