Renamed ecore-wl-types to wl-types
[platform/core/uifw/dali-adaptor.git] / build / tizen / configure.ac
1 #
2 # Copyright (c) 2015 Samsung Electronics Co., Ltd.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 m4_define([dali_version],[0.1.0])
18 AC_INIT([dali], [dali_version])
19 AM_INIT_AUTOMAKE([-Wall foreign])
20
21 AC_CONFIG_MACRO_DIR([m4])
22
23 AC_PROG_CXX
24 AC_PROG_LIBTOOL
25 AC_PROG_MKDIR_P
26
27 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
28
29 LT_INIT
30
31 DALI_ADAPTOR_VERSION=dali_version
32 AC_SUBST(DALI_ADAPTOR_VERSION)
33
34 FREETYPE_REQUIRED=9.16.3
35 # 17.1.11 = Freetype version 2.5.2
36 FREETYPE_BITMAP_SUPPORT_VERSION=17.1.11
37
38 PKG_CHECK_MODULES(DALICORE, dali-core)
39 PKG_CHECK_MODULES(ELEMENTARY, elementary)
40 PKG_CHECK_MODULES(ECORE, ecore)
41 PKG_CHECK_MODULES(ECORE_IPC, ecore-ipc)
42 PKG_CHECK_MODULES(EXIF, libexif)
43 PKG_CHECK_MODULES(FREETYPE, [freetype2 >= $FREETYPE_REQUIRED])
44 PKG_CHECK_MODULES(FREETYPE_BITMAP_SUPPORT, [freetype2 >= $FREETYPE_BITMAP_SUPPORT_VERSION], [ freetype_bitmap_support=yes  ], [ freetype_bitmap_support=no ] )
45 PKG_CHECK_MODULES(FONTCONFIG, fontconfig)
46 PKG_CHECK_MODULES(PNG, libpng)
47 PKG_CHECK_MODULES(LIBEXIF, libexif)
48 PKG_CHECK_MODULES(LIBDRM, libdrm)
49 PKG_CHECK_MODULES(LIBCURL, libcurl)
50 PKG_CHECK_MODULES(HARFBUZZ, harfbuzz)
51 PKG_CHECK_MODULES(FRIBIDI, fribidi)
52 PKG_CHECK_MODULES(TTRACE,  ttrace, AC_DEFINE(ENABLE_TTRACE, 1, [ttrace available]),
53                   [ AC_MSG_NOTICE([Tizen Trace not avaiable]) ]
54                   )
55 PKG_CHECK_MODULES(ECORE_IMF, [ecore-imf >= 1.13], [ecore_imf_1_13=yes], [ecore_imf_1_13=no])
56
57
58 # Check for EldBus.h in ECore
59 PKG_CHECK_MODULES(ELDBUS, eldbus, [ eldbus_available=yes ],  [ eldbus_available=no ] )
60
61 DALI_ELDBUS_AVAILABLE=
62 if test "x$eldbus_available" = "xyes"; then
63   DALI_ELDBUS_AVAILABLE=true
64   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DDALI_ELDBUS_AVAILABLE "
65 fi
66 AC_SUBST(DALI_ELDBUS_AVAILABLE)
67
68
69 AC_ARG_ENABLE([feedback],
70               [AC_HELP_STRING([ --enable-feedback],
71                               [Enable feedback plugin])],
72               [enable_feedback=yes],
73               [enable_feedback=no])
74
75 AM_CONDITIONAL([USE_FEEDBACK], [test x$enable_feedback = xyes])
76
77 DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DPLATFORM_TIZEN"
78
79 AC_ARG_ENABLE(exportall,
80               [AC_HELP_STRING([--enable-exportall],
81                               [enables the exporting of all the symbols in the library])],
82               [enable_exportall=yes],
83               [enable_exportall=no])
84
85 AC_ARG_ENABLE([debug],
86               [AC_HELP_STRING([--enable-debug],
87                               [Turns on debugging])],
88               [enable_debug=$enableval],
89               [enable_debug=no])
90
91 AC_ARG_ENABLE(shaderbincache,
92               [AC_HELP_STRING([--enable-shaderbincache],
93                               [enables shader binary cache])],
94               [enable_shaderbincache=$enableval],
95               [enable_shaderbincache=DISABLE])
96
97 AC_ARG_ENABLE(networklogging,
98               [AC_HELP_STRING([--enable-networklogging],
99                               [enables network for debug tool])],
100               [enable_networklogging=$enableval],
101               [enable_networklogging=no])
102
103
104 if test "x$enable_debug" = "xyes"; then
105   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DDEBUG_ENABLED"
106 fi
107
108 if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then
109   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS"
110 fi
111
112 if test "x$enable_shaderbincache" = "xENABLE"; then
113   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DSHADERBIN_CACHE_ENABLED"
114 fi
115
116 if test "x$enable_networklogging" = "xyes"; then
117   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DNETWORK_LOGGING_ENABLED"
118 fi
119
120 # If Ecore IMF version is greater than 1.13, then some structures are different
121 if test "x$ecore_imf_1_13" = "xyes"; then
122   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DECORE_IMF_1_13"
123 fi
124
125 AC_ARG_ENABLE([gles],
126               [AC_HELP_STRING([--enable-gles],
127                               [Specify the OpenGL ES version for backwards compatibility])],
128               [enable_gles=$enableval],
129               [enable_gles=30])
130
131 DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DDALI_GLES_VERSION=${enable_gles}"
132
133 # node.js by default statically links against libuv, so it doesn't need to install
134 # a libuv headers/ shared library. So we can't use pkg-config to access any headers.
135 # As a work around we pass the node deps path so we can access the libuv headers inside nodes
136 # directory
137 AC_ARG_WITH([node-js],
138               [AC_HELP_STRING([--with-node-js],
139                               [Node.JS path that contains Lib UV headers. Setting this configures DALi to work with LibUV mainloop used in Node.JS.
140                               For example /usr/tmp/downloads/node-v0.12.4/deps/uv/include/ ])],
141               [with_node_js=$withval],
142               [with_node_js=no])
143
144 # Node.JS already has a libuv main loop running,so we have to integrate with it
145 AM_CONDITIONAL(LIB_UV_EVENT_LOOP, test x$with_node_js != xno)
146
147
148 build_for_node_js=no
149 if test "x$with_node_js" != "xno"; then
150   AC_MSG_NOTICE("build for node_js == yes");
151   [build_for_node_js=yes]
152   DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DNODE_JS_SUPPORT  -I${with_node_js}"
153 else
154  #not using node.js build
155   AC_MSG_NOTICE("build for node_js == no");
156 fi
157
158 # Option to allow building with Tizen SDK 2.2
159 AC_ARG_WITH([tizen-2-2-compatibility],
160             [AC_HELP_STRING([--with-tizen-2-2-compatibility],
161                             [Use Tizen SDK 2.2 compatibility])],
162             [with_tizen_2_2_compatibility=$withval],
163             [with_tizen_2_2_compatibility=no])
164
165 # Tizen Profile options
166 AC_ARG_ENABLE([profile],
167               [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,WEARABLE,TV,UBUNTU],
168                             [Select the variant of tizen])],
169               [enable_profile=$enableval],
170               [enable_profile=COMMON])
171
172 # Ensure valid profile selected
173 if test "x$enable_profile" != "xCOMMON" -a "x$enable_profile" != "xMOBILE" -a "x$enable_profile" != "xWEARABLE" -a "x$enable_profile" != "xTV" -a "x$enable_profile" != "xUBUNTU"; then
174   AC_MSG_ERROR([$enable_profile is an invalid profile])
175 fi
176
177 AC_ARG_ENABLE(wayland,
178               [  --enable-wayland       Build on Wayland],
179               enable_wayland=yes,
180               enable_wayland=no)
181
182 DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DDALI_PROFILE_${enable_profile}"
183 DALI_PROFILE_CFLAGS=" -DDALI_PROFILE_${enable_profile}"
184 AM_CONDITIONAL([COMMON_PROFILE], [test x$enable_profile = xCOMMON])
185 AM_CONDITIONAL([WAYLAND_EXTENSIONS_SUPPORTED], [test x$enable_profile != xCOMMON])
186 AM_CONDITIONAL([MOBILE_PROFILE], [test x$enable_profile = xMOBILE])
187 AM_CONDITIONAL([WEARABLE_PROFILE], [test x$enable_profile = xWEARABLE])
188 AM_CONDITIONAL([TV_PROFILE], [test x$enable_profile = xTV])
189 AM_CONDITIONAL([UBUNTU_PROFILE], [test x$enable_profile = xUBUNTU])
190 AM_CONDITIONAL([WAYLAND], [test x$enable_wayland = xyes])
191
192 AM_CONDITIONAL([ENABLE_NETWORK_LOGGING], [test x$enable_networklogging = xyes])
193
194 # Platforms should either enable features or remove them, they
195 # should not disable features. This allows the developer to override
196 # features through the command line.
197
198 if test "x$enable_profile" = "xCOMMON"; then
199 PKG_CHECK_MODULES(OPENGLES20, glesv2 egl)
200 fi
201
202 if test "x$enable_profile" = "xMOBILE"; then
203 PKG_CHECK_MODULES(OPENGLES20, gles20)
204 enable_assimp=no
205 fi
206
207 if test "x$enable_profile" = "xLITE"; then
208 PKG_CHECK_MODULES(OPENGLES20, gles20)
209 fi
210
211 if test "x$enable_profile" = "xWEARABLE"; then
212 PKG_CHECK_MODULES(OPENGLES20, gles20)
213 fi
214
215 if test "x$enable_profile" = "xTV"; then
216 PKG_CHECK_MODULES(OPENGLES20, glesv2)
217 fi
218
219 if test "x$enable_profile" = "xUBUNTU"; then
220 PKG_CHECK_MODULES(OPENGLES20, glesv2 egl)
221 else
222 PKG_CHECK_MODULES(CAPI_APPFW_APPLICATION, capi-appfw-application)
223 PKG_CHECK_MODULES(DLOG, dlog)
224 PKG_CHECK_MODULES(SENSOR, sensor)
225 PKG_CHECK_MODULES(TTS, tts)
226 PKG_CHECK_MODULES(VCONF, vconf)
227 PKG_CHECK_MODULES(CAPI_SYSTEM_SYSTEM_SETTINGS, capi-system-system-settings)
228
229 if test "x$with_tizen_2_2_compatibility" = "xno"; then
230 PKG_CHECK_MODULES(CAPI_SYSTEM_INFO, capi-system-info)
231 fi
232
233 fi # ubuntu profile test
234
235 if test "x$enable_wayland" = "xyes"; then
236 PKG_CHECK_MODULES(WAYLAND, [ecore-wayland egl wayland-egl wayland-client >= 1.2.0 xkbcommon],
237                   [DALI_HAS_ECOREWL=yes],
238                   [DALI_HAS_ECOREWL=no])
239
240 # common profile currently does not have wayland extensions like xdg-shell
241 if test "x$enable_profile" != "xCOMMON"; then
242 PKG_CHECK_MODULES(WAYLAND_EXTENSION, xdg-shell-client)
243 fi
244 else
245 PKG_CHECK_MODULES(ECORE_X, [ecore-x],
246                   [DALI_HAS_ECOREX=yes],
247                   [DALI_HAS_ECOREX=no])
248 PKG_CHECK_MODULES(X11, [x11],
249                   [DALI_HAS_X11=yes],
250                   [DALI_HAS_X11=no])
251 fi
252
253 if test "x$enable_feedback" = "xyes"; then
254
255 if test "x$enable_profile" = "xCOMMON" || test "x$enable_profile" = "xTV"; then
256 PKG_CHECK_MODULES(HAPTIC, haptic)
257 fi
258
259 if test "x$enable_profile" = "xMOBILE"; then
260 PKG_CHECK_MODULES(DEVICED, deviced)
261 fi
262
263 PKG_CHECK_MODULES(FEEDBACK, feedback)
264 PKG_CHECK_MODULES(MMFSOUND, mm-sound)
265 fi
266
267 if test x$DALI_DATA_RW_DIR != x; then
268   dataReadWriteDir=$DALI_DATA_RW_DIR
269 else
270   dataReadWriteDir=${prefix}/share/dali/
271 fi
272
273 if test x$DALI_DATA_RO_DIR != x; then
274   dataReadOnlyDir=$DALI_DATA_RO_DIR
275 else
276   dataReadOnlyDir=${prefix}/share/dali/
277 fi
278
279 if test x$FONT_CONFIGURATION_FILE != x; then
280   fontConfigurationFile=$FONT_CONFIGURATION_FILE
281 fi
282
283 AC_SUBST(dataReadWriteDir)
284 AC_SUBST(dataReadOnlyDir)
285 AC_SUBST(DALI_ADAPTOR_CFLAGS)
286 AC_SUBST(DALI_PROFILE_CFLAGS)
287 AC_SUBST(fontConfigurationFile)
288
289
290 # Specify the include directory for development headers
291 #devincludepath=${includedir}/dali/internal
292 devincludepath=${includedir}
293 AC_SUBST(devincludepath)
294
295 AC_CONFIG_FILES([
296  Makefile
297  adaptor/Makefile
298  dali.pc
299  adaptor/dali-adaptor-integration.pc
300 ])
301
302 AM_CONDITIONAL([USE_PLUGIN], [test x$enable_feedback = xyes])
303
304 if test "x$enable_feedback" = "xyes"; then
305 AC_CONFIG_FILES([
306  plugins/Makefile
307 ])
308 fi
309
310 if test "x$freetype_bitmap_support" = "xyes"; then
311 DALI_ADAPTOR_CFLAGS="$DALI_ADAPTOR_CFLAGS -DFREETYPE_BITMAP_SUPPORT"
312 fi
313
314 AC_OUTPUT
315
316
317 echo "
318 Configuration
319 -------------
320   Prefix:                           $prefix
321   Debug Build:                      $enable_debug
322   Compile flags                     $DALI_ADAPTOR_CFLAGS
323   Freetype bitmap support (Emoji):  $freetype_bitmap_support
324   Profile:                          $enable_profile
325   Data Dir (Read/Write):            $dataReadWriteDir
326   Data Dir (Read Only):             $dataReadOnlyDir
327   Tizen SDK 2.2 compatibility:      $with_tizen_2_2_compatibility
328   EldBus:                           $eldbus_available
329   Shader Binary Cache:              $enable_shaderbincache
330   Build for Node.JS (LibUV)         $build_for_node_js
331   Ecore Version At Least 1.13.0     $ecore_imf_1_13
332   Network logging enabled:          $enable_networklogging
333   Font config file:                 $fontConfigurationFile
334 "
335 # optional output of node.js source path if we're building for node.js
336 if test "x$build_for_node_js" != "xno"; then
337 echo "  Node.JS LibUV header path         $with_node_js"
338 fi