X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=build%2Ftizen%2Fconfigure.ac;h=a0b795d25061309a5b4d26401c8ccdb103a42599;hp=5f027e63682167d556c54cfac72f0d25897efe6c;hb=5575839f22d973dd1001819067bd8be775ab9add;hpb=2ec164cd618f93ccafe17b1d0b8ff16401ed4aef diff --git a/build/tizen/configure.ac b/build/tizen/configure.ac index 5f027e6..a0b795d 100644 --- a/build/tizen/configure.ac +++ b/build/tizen/configure.ac @@ -30,7 +30,6 @@ AC_SUBST(DALI_TOOLKIT_VERSION) PKG_CHECK_MODULES(DALICORE, dali-core) PKG_CHECK_MODULES(DALI, dali) -PKG_CHECK_MODULES(FRIBIDI, fribidi) DALI_TOOLKIT_CFLAGS=-DPLATFORM_TIZEN @@ -46,6 +45,12 @@ AC_ARG_ENABLE([debug], [enable_debug=$enableval], [enable_debug=no]) +AC_ARG_ENABLE([i18n], + [AC_HELP_STRING([--enable-i18n], + [Turns on internationalisation])], + [enable_i18n=$enableval], + [enable_i18n=no]) + # option to build JavaScript plugin # configure settings and output # --enable-javascript // enable_javascript = yes @@ -57,8 +62,8 @@ AC_ARG_ENABLE([javascript], [AC_HELP_STRING([--enable-javascript], [Enable JavaScript plugin])] , [enable_javascript=$enableval], - [enable_javascript=no]) -#TODO MESH_REWORK Change default back to automatic + [enable_javascript=automatic]) + if test "x$enable_debug" = "xyes"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDEBUG_ENABLED" @@ -68,15 +73,21 @@ if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS" fi - - +if test "x$enable_i18n" = "xyes"; then + DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDGETTEXT_ENABLED " +fi # Tizen Profile options AC_ARG_ENABLE([profile], - [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,WEARABLE,TV], + [AC_HELP_STRING([--enable-profile=UBUNTU,MOBILE,WEARABLE,TV], [Select the variant of tizen])], [dali_profile=$enableval], - [dali_profile=COMMON]) + [dali_profile=UBUNTU]) + +# Ensure valid profile selected +if test "x$dali_profile" != "xUBUNTU" -a "x$dali_profile" != "xMOBILE" -a "x$dali_profile" != "xWEARABLE" -a "x$dali_profile" != "xTV" ; then + AC_MSG_ERROR([$enable_profile is an invalid profile]) +fi if test x$DALI_DATA_RW_DIR != x; then dataReadWriteDir=${DALI_DATA_RW_DIR}/ @@ -90,6 +101,19 @@ else dataReadOnlyDir=${prefix}/share/dali/ fi +DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDALI_PROFILE_${dali_profile}" + +# Style paths +if test "x$dali_profile" = "xUBUNTU"; then + STYLE_DIR=../../../dali-toolkit/styles +fi + +if test "x$dali_profile" = "xMOBILE"; then + STYLE_DIR=../../../dali-toolkit/styles/mobile +fi + +AC_SUBST(STYLE_DIR) + # v8 version 4+ requires c++11 PKG_CHECK_MODULES(V8, v8 = 3.32.7, [ pkg_check_v8=yes ], [ pkg_check_v8=no ] )