1 # Copyright (c) 2018 Samsung Electronics Co., Ltd.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
16 m4_define([dali_version],[0.1.1])
17 AC_INIT([dali], [dali_version])
18 AM_INIT_AUTOMAKE([-Wall foreign])
24 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
28 DALI_VERSION=dali_version
29 AC_SUBST(DALI_VERSION)
31 DALI_CFLAGS=-DPLATFORM_TIZEN
34 DALI_CFLAGS="$DALI_CFLAGS -std=c++11 -Wnon-virtual-dtor -Woverloaded-virtual -Wold-style-cast -Werror -Wall -Wextra -Wno-unused-parameter -Wfloat-equal -Wconversion"
36 AC_ARG_ENABLE(exportall,
37 [AC_HELP_STRING([--enable-exportall],
38 [enables the exporting of all the symbols in the library])],
39 [enable_exportall=yes],
40 [enable_exportall=no])
42 AC_ARG_ENABLE([debug],
43 [AC_HELP_STRING([--enable-debug],
44 [Turns on debugging])],
45 [enable_debug=$enableval],
48 AC_ARG_ENABLE([backtrace],
49 [AC_HELP_STRING([--enable-backtrace],
50 [Backtrace for exceptions])],
51 [enable_backtrace=$enableval],
52 [enable_backtrace=yes])
54 AC_ARG_ENABLE([lock_backtrace],
55 [AC_HELP_STRING([--enable-lock-backtrace],
56 [Backtrace for when more than 1 lock is held on the same thread])],
57 [enable_lock_backtrace=$enableval],
58 [enable_lock_backtrace=no])
61 [AC_HELP_STRING([--enable-gles],
62 [Specify the OpenGL ES version for backwards compatibility])],
63 [enable_gles=$enableval],
66 AC_ARG_ENABLE([cxx03_abi],
67 [AC_HELP_STRING([--enable-cxx03-abi],
68 [Specify abi for the build])],
69 [enable_cxx03_abi=$enableval],
70 [enable_cxx03_abi=no])
72 AC_ARG_ENABLE([rename_so],
73 [AC_HELP_STRING([--enable-rename-so],
74 [Specify whether so file is renamed or not])],
75 [enable_rename_so=$enableval],
76 [enable_rename_so=yes])
78 AM_CONDITIONAL([ENABLE_CXX03_ABI], [test x$enable_cxx03_abi = xyes])
79 AM_CONDITIONAL([ENABLE_RENAME_SO], [test x$enable_rename_so = xyes])
81 if test "x$enable_cxx03_abi" = "xyes"; then
82 DALI_CFLAGS="$DALI_CFLAGS -D_GLIBCXX_USE_CXX11_ABI=0"
85 DALI_CFLAGS="$DALI_CFLAGS -DDALI_GLES_VERSION=${enable_gles}"
87 if test "x$enable_debug" = "xyes"; then
88 DALI_CFLAGS="$DALI_CFLAGS -DDEBUG_ENABLED"
91 if test "x$enable_trace" = "xyes"; then
92 DALI_CFLAGS="$DALI_CFLAGS -DTRACE_ENABLED"
95 if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then
96 DALI_CFLAGS="$DALI_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS"
99 if test "x$enable_lock_backtrace" = "xyes"; then
100 DALI_CFLAGS="$DALI_CFLAGS -DLOCK_BACKTRACE_ENABLED"
101 enable_backtrace="yes"
104 # Must come after locks backtrace feature test
105 if test "x$enable_backtrace" = "xyes"; then
106 DALI_CFLAGS="$DALI_CFLAGS -DBACKTRACE_ENABLED"
109 if test x$DALI_DATA_RW_DIR != x; then
110 dataReadWriteDir=$DALI_DATA_RW_DIR
112 dataReadWriteDir=${prefix}/share/dali/
115 if test x$DALI_DATA_RO_DIR != x; then
116 dataReadOnlyDir=$DALI_DATA_RO_DIR
118 dataReadOnlyDir=${prefix}/share/dali/
121 DALI_CFLAGS="$DALI_CFLAGS -I${includedir}"
122 DALI_LDFLAGS="-L${libdir}"
124 AC_SUBST(dataReadWriteDir)
125 AC_SUBST(dataReadOnlyDir)
126 AC_SUBST(DALI_CFLAGS)
127 AC_SUBST(DALI_LDFLAGS)
129 # Specify the include directory for development headers
130 devincludepath=${includedir}
131 AC_SUBST(devincludepath)
133 AC_CONFIG_FILES([Makefile dali-core/Makefile])
135 if test "x$enable_cxx03_abi" = "xyes"; then
136 AC_CONFIG_FILES([dali-core-cxx03.pc])
139 if test "x$enable_cxx03_abi" != "xyes"; then
140 AC_CONFIG_FILES([dali-core.pc])
149 Debug Build: $enable_debug
150 Trace Build: $enable_trace
151 Data Dir (Read/Write): $dataReadWriteDir
152 Data Dir (Read Only): $dataReadOnlyDir
153 Backtrace: $enable_backtrace
154 ScopedLock Backtrace: $enable_lock_backtrace
155 OpenGL ES version: $enable_gles
156 C++03 ABI: $enable_cxx03_abi
157 Rename so file: $enable_rename_so